diff options
author | friendica <info@friendica.com> | 2013-12-09 13:44:45 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 13:44:45 -0800 |
commit | 31efbe2f466a323609f9ed8d38bb5fb6223e406b (patch) | |
tree | 1f94498070825bce916bdd68cf0c0eaf85307fad /index.php | |
parent | f8e19271502035473197c8bf1b4cd267aa827851 (diff) | |
parent | 3c19d9aed213b28f1c07809c193f98759b09cbf7 (diff) | |
download | volse-hubzilla-31efbe2f466a323609f9ed8d38bb5fb6223e406b.tar.gz volse-hubzilla-31efbe2f466a323609f9ed8d38bb5fb6223e406b.tar.bz2 volse-hubzilla-31efbe2f466a323609f9ed8d38bb5fb6223e406b.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -245,6 +245,12 @@ if (file_exists($theme_info_file)){ if(! x($a->page,'content')) $a->page['content'] = ''; +/* set JS cookie */ +if($_COOKIE['jsAvailable'] != 1) { + $a->page['content'] .= '<script>document.cookie="jsAvailable=1; path=/"; location.reload();</script>'; +} + + if(! $install) call_hooks('page_content_top',$a->page['content']); |