diff options
author | friendica <info@friendica.com> | 2013-08-15 22:52:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-15 22:52:19 -0700 |
commit | a8dd7280b33008d5100b6d8020640673abf5a78a (patch) | |
tree | 497d7446c445d669d57e1a1f4cfc12d94daa1efb /mod/search.php | |
parent | fc0a9c78a9c6761a37460d93aed033786402731e (diff) | |
download | volse-hubzilla-a8dd7280b33008d5100b6d8020640673abf5a78a.tar.gz volse-hubzilla-a8dd7280b33008d5100b6d8020640673abf5a78a.tar.bz2 volse-hubzilla-a8dd7280b33008d5100b6d8020640673abf5a78a.zip |
get rid of more variables with dashes in the names - use underscore *except* in CSS. These were probably already here, but if you see any - please keep them out of PHP and MySQL where they sometimes get interpreted as a subtraction operation and are a bugger to find.
Diffstat (limited to 'mod/search.php')
-rw-r--r-- | mod/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/search.php b/mod/search.php index 1335ea508..38131f63f 100644 --- a/mod/search.php +++ b/mod/search.php @@ -59,7 +59,7 @@ function search_init(&$a) { } else { unset($_SESSION['theme']); - unset($_SESSION['mobile-theme']); + unset($_SESSION['mobile_theme']); } |