diff options
author | friendica <info@friendica.com> | 2013-05-29 16:31:07 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-29 16:31:07 -0700 |
commit | cd9ea115f85fd5bc4d55cec06a480cc21d721e15 (patch) | |
tree | a5af8039833d4c59f5fc86b1463c05c0439c5e9b /boot.php | |
parent | 2a6d3e1f940af1819182be5710eb6a1f45de1929 (diff) | |
download | volse-hubzilla-cd9ea115f85fd5bc4d55cec06a480cc21d721e15.tar.gz volse-hubzilla-cd9ea115f85fd5bc4d55cec06a480cc21d721e15.tar.bz2 volse-hubzilla-cd9ea115f85fd5bc4d55cec06a480cc21d721e15.zip |
function args reversed on duplicate zid detection.
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2113,7 +2113,7 @@ function zid_init(&$a) { function zid($s,$force = false) { - if(! strlen($s) || strpos('zid=',$s)) + if(! strlen($s) || strpos($s,'zid=')) return $s; $has_params = ((strpos($s,'?')) ? true : false); $num_slashes = substr_count($s,'/'); |