use notice function instead of appending to sysmsg

pull/1/head
Mike Macgirvin 2010-07-02 17:02:41 -07:00
rodzic b9e1a126c5
commit 3e1fe042e7
1 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -299,4 +299,11 @@ function footer(&$a) {
$s = fetch_url("http://fortunemod.com/cookie.php?equal=1");
$a->page['content'] .= "<div class=\"fortune\" >$s</div>";
}
}
if(! function_exists('notice')) {
function notice($s) {
$_SESSION['sysmsg'] .= $s;
}}