mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 12:07:23 +08:00
change url
This commit is contained in:
@@ -209,7 +209,7 @@ elseif (isset($_GET['action']) && $_GET['action'] == "newforum"){
|
||||
<td>
|
||||
<select name=overforums>
|
||||
<?php
|
||||
$forid = $row["forid"];
|
||||
$forid = $row["forid"] ?? 0;
|
||||
$res = sql_query("SELECT * FROM overforums");
|
||||
while ($arr = mysql_fetch_array($res)) {
|
||||
|
||||
|
||||
+1
-1
@@ -621,7 +621,7 @@ if ($showtrackerload == "yes") {
|
||||
?>
|
||||
<table width="100%" class="main" border="0" cellspacing="0" cellpadding="0"><tr><td class="embedded">
|
||||
<div align="center"><br /><font class="medium"><?php echo $lang_index['text_browser_note'] ?></font></div>
|
||||
<div align="center"><a href="http://www.nexusphp.com" title="<?php echo PROJECTNAME?>" target="_blank"><img src="pic/nexus.png" alt="<?php echo PROJECTNAME?>" /></a></div>
|
||||
<div align="center"><a href="<?php echo NEXUSPHPURL?>" title="<?php echo PROJECTNAME?>" target="_blank"><img src="pic/nexus.png" alt="<?php echo PROJECTNAME?>" /></a></div>
|
||||
</td></tr></table>
|
||||
<?php
|
||||
// ------------- end: browser, client and code note ------------------//
|
||||
|
||||
+1
-1
@@ -37,7 +37,7 @@ function searchtable($title, $action, $opts = array()){
|
||||
if ($opts) {
|
||||
print($lang_log['text_in']."<select name=search>");
|
||||
foreach($opts as $value => $text)
|
||||
print("<option value='".$value."'". ($value == $_GET['search'] ? " selected" : "").">".$text."</option>");
|
||||
print("<option value='".$value."'". (isset($_GET['search']) && $value == $_GET['search'] ? " selected" : "").">".$text."</option>");
|
||||
print("</select>");
|
||||
}
|
||||
print("<input type=\"hidden\" name=\"action\" value='".$action."'> ");
|
||||
|
||||
Reference in New Issue
Block a user