mirror of
https://github.com/friendica/friendica
synced 2024-11-17 21:43:41 +00:00
use notice function instead of appending to sysmsg
This commit is contained in:
parent
b9e1a126c5
commit
3e1fe042e7
1 changed files with 8 additions and 1 deletions
9
boot.php
9
boot.php
|
@ -299,4 +299,11 @@ function footer(&$a) {
|
||||||
|
|
||||||
$s = fetch_url("http://fortunemod.com/cookie.php?equal=1");
|
$s = fetch_url("http://fortunemod.com/cookie.php?equal=1");
|
||||||
$a->page['content'] .= "<div class=\"fortune\" >$s</div>";
|
$a->page['content'] .= "<div class=\"fortune\" >$s</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(! function_exists('notice')) {
|
||||||
|
function notice($s) {
|
||||||
|
|
||||||
|
$_SESSION['sysmsg'] .= $s;
|
||||||
|
|
||||||
|
}}
|
Loading…
Reference in a new issue