aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-10-30 04:59:10 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-10-30 04:59:10 -0700
commit768acb0a3faf2c2f2a523420710673aaacb64f76 (patch)
tree908896498fb5d8809f96af4bb220ac579a7dbbde /boot.php
parentcbaf0f2dc9cbea06ca3496d60f69dfeb10352394 (diff)
downloadvolse-hubzilla-768acb0a3faf2c2f2a523420710673aaacb64f76.tar.gz
volse-hubzilla-768acb0a3faf2c2f2a523420710673aaacb64f76.tar.bz2
volse-hubzilla-768acb0a3faf2c2f2a523420710673aaacb64f76.zip
-Wall cleanup
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index f69d66be5..b67a6cebb 100644
--- a/boot.php
+++ b/boot.php
@@ -1292,7 +1292,7 @@ function logger($msg) {
if(! function_exists('activity_match')) {
function activity_match($haystack,$needle) {
- if(($haystack === $needle) || (($basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
+ if(($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
return true;
return false;
}}