diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2023-11-26 03:29:03 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2023-11-26 03:29:03 +0000 |
commit | 1786be9bb60fa85739bc1f0d57433fa1667da06e (patch) | |
tree | af2cfffe8f86cc113e996c3e10b28b10b9992295 /scripts | |
parent | d45017935c481d72a50bcbf49e3587ca3ead02eb (diff) | |
download | pmwiki.svn-1786be9bb60fa85739bc1f0d57433fa1667da06e.tar.bz2 |
Fix for window.localStorage disabled.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4531 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/pagelist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pagelist.php b/scripts/pagelist.php index d9110bd2..082d453a 100644 --- a/scripts/pagelist.php +++ b/scripts/pagelist.php @@ -48,7 +48,7 @@ SDVA($SearchPatterns['normal'], array( # This takes (a tiny amoint of) time, so we only do it when needed. function EnablePageListGroupHomes() { global $SearchPatterns; - if(isset($SearchPatterns['grouphomes'])) return; + if (isset($SearchPatterns['grouphomes'])) return; $groups = $homes = array(); foreach(ListPages() as $pn) { |