I originally added some script on my status bar that reads;
-=[Welcome to the lair of the Matrix Wolves]=-
I want to change it, but cannot find where it is. I have checked header.php & index.php and its not there !!
Can anyone help/got any ideas ?
Btw, if you check View>Source it does appear in the index:
<script language="JavaScript">
function tS(){ x=new Date(); x.setTime(x.getTime()); return x; }
function lZ(x){ return (x>9)?x:'0'+x; }
function dT(){ window.status=' -=[ Welcome to the lair of the Matrix Wolves]=-'; if(fr==0){ fr=1; document.write('<font size=2 face=Arial><b><span id="tP">'+eval(oT)+'</span></b></font>'); } tP.innerText=eval(oT); setTimeout('dT()',1000); }
var fr=0,oT="lZ(tS().getHours())+':'+lZ(tS().getMinutes())+':'+lZ(tS().getSeconds())+' '";
</script>
But when I actually check the index.php it reads only:
<?php
/ ***********************************************
****************/
/ PHP-NUKE: Advanced Content Management System /
/ ============================================ /
/ /
/ Copyright (c) 2002 by Francisco Burzi /
/ http://phpnuke.org /
/ /
/ This program is free software. You can redistribute it and/or modify /
/ it under the terms of the GNU General Public License as published by /
/ the Free Software Foundation; either version 2 of the License. /
/ /
/ ********************************************
****************/
/ Additional security checking code 2003 by chatserv /
/ http://www.nukefixes.com -- http://www.nukeresources.com /
/ ********************************************
*******************/
require_once("mainfile.php");
$SERVER['PHP_SELF'] = "modules.php";
$row = $db->sql_fetchrow($db->sql_query("SELECT main_module from ".$prefix."main"));
$name = $row['main_module'];
$home = 1;
if ($httpref==1) {
$referer = $SERVER["HTTP_REFERER"];
$referer = check_html($referer, nohtml);
if ($referer=="" OR eregi("unknown", $referer) OR substr("$referer",0,strlen($nukeurl))==$nukeurl OR eregi("bookmark",$referer)) {
} else {
$result = $db->sql_query("INSERT INTO ".$prefix."referer VALUES (NULL, '$referer')");
}
$numrows = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."referer"));
if($numrows>=$httprefmax) {
$result2 = $db->sql_query("DELETE FROM ".$prefix."referer");
}
}
if (!isset($mop)) { $mop="modload"; }
if (!isset($mod_file)) { $mod_file="index"; }
$name = trim($name);
$file = trim($file);
$mod_file = trim($mod_file);
$mop = trim($mop);
if (ereg("..",$name) || ereg("..",$file) || ereg("..",$mod_file) || ereg("..",$mop)) {
echo "You are so cool...";
} else {
$ThemeSel = get_theme();
if (file_exists("themes/$ThemeSel/module.php")) {
include("themes/$ThemeSel/module.php");
if (is_active("$default_module") AND file_exists("modules/$default_module/".$mod_file.".php")) {
$name = $default_module;
}
}
if (file_exists("themes/$ThemeSel/modules/$name/".$mod_file.".php")) {
$modpath = "themes/$ThemeSel/";
}
$modpath .= "modules/$name/".$mod_file.".php";
if (file_exists($modpath)) {
include($modpath);
} else {
$index = 1;
include("header.php");
OpenTable();
if (is_admin($admin)) {
echo "<center><font class=\"\"><b>".HOMEPROBLEM."</b></font><br><br>[ <a href=\"admin.php?op=modules\">".ADDAHOME."</a> ]</center>";
} else {
echo "<center>"._HOMEPROBLEMUSER."</center>";
}
CloseTable();
include("footer.php");
}
}
?>