aboutsummaryrefslogtreecommitdiffstats
path: root/mod/parse_url.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-05-02 21:17:35 -0700
committerfriendica <info@friendica.com>2013-05-02 21:17:35 -0700
commitef07b71bc7972f79a7e5c1001a8c31d75b0cca68 (patch)
tree31e55d8ea40e4ddff28d82758878bb0e8c84dc1f /mod/parse_url.php
parentb33c15d045eb861f7f9df157b64294b740bdf8ad (diff)
downloadvolse-hubzilla-ef07b71bc7972f79a7e5c1001a8c31d75b0cca68.tar.gz
volse-hubzilla-ef07b71bc7972f79a7e5c1001a8c31d75b0cca68.tar.bz2
volse-hubzilla-ef07b71bc7972f79a7e5c1001a8c31d75b0cca68.zip
incorrect comparison operator
Diffstat (limited to 'mod/parse_url.php')
-rw-r--r--mod/parse_url.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/parse_url.php b/mod/parse_url.php
index 9d68b907d..783390f27 100644
--- a/mod/parse_url.php
+++ b/mod/parse_url.php
@@ -279,7 +279,7 @@ function parse_url_content(&$a) {
// If this is a Red site, use zrl rather than url so they get zids sent to them by default
- if( x($siteinfo,'generator') && (strpos($siteinfo['generator'],RED_PLATFORM . ' ') == 0))
+ if( x($siteinfo,'generator') && (strpos($siteinfo['generator'],RED_PLATFORM . ' ') === 0))
$template = str_replace('url','zrl',$template);
if($siteinfo["title"] == "") {