aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2014-02-06 23:11:47 +0100
committermarijus <mario@localhost.localdomain>2014-02-06 23:11:47 +0100
commit6f2c168d1a434b2223f09a922780617fdc07b278 (patch)
tree0e715f778ccda1260176a7c4db60494670eb3f55 /include
parenta2b311991a90e1c78d30bad5504c18bb2a3c5c2a (diff)
parent3e677ec53de7517c249114dd30539141fbde85e3 (diff)
downloadvolse-hubzilla-6f2c168d1a434b2223f09a922780617fdc07b278.tar.gz
volse-hubzilla-6f2c168d1a434b2223f09a922780617fdc07b278.tar.bz2
volse-hubzilla-6f2c168d1a434b2223f09a922780617fdc07b278.zip
Merge branch 'master' of https://github.com/friendica/red into upstream
Diffstat (limited to 'include')
-rwxr-xr-xinclude/items.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/items.php b/include/items.php
index 8b9cc8d04..1a26198da 100755
--- a/include/items.php
+++ b/include/items.php
@@ -160,7 +160,7 @@ function red_zrl_callback($matches) {
$zrl = true;
}
if($zrl)
- return $matches[1] . '[zrl=' . $matches[2] . ']' . $matches[2] . '[/zrl]';
+ return $matches[1] . '#^[zrl=' . $matches[2] . ']' . $matches[2] . '[/zrl]';
return $matches[0];
}
@@ -2109,11 +2109,13 @@ function send_status_notifications($post_id,$item) {
$link = get_app()->get_baseurl() . '/display/' . $item['mid'];
- $r = q("select id from notify where link = '%s' and uid = %d limit 1",
+
+ $y = q("select id from notify where link = '%s' and uid = %d limit 1",
dbesc($link),
intval($item['uid'])
);
- if($r)
+
+ if($y)
$notify = false;
if(! $notify)