aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-01-03 14:27:00 -0800
committerfriendica <info@friendica.com>2012-01-03 14:27:00 -0800
commitc583d1620955b8d170b8cbf7a106cefeecad56c8 (patch)
tree4d70947824ea489c72725c88e15d663d9cf8f788 /include/items.php
parent184230e06826117b1d87241e3acdf19935470e8f (diff)
downloadvolse-hubzilla-c583d1620955b8d170b8cbf7a106cefeecad56c8.tar.gz
volse-hubzilla-c583d1620955b8d170b8cbf7a106cefeecad56c8.tar.bz2
volse-hubzilla-c583d1620955b8d170b8cbf7a106cefeecad56c8.zip
fix reference variable effects on sorting
Diffstat (limited to 'include/items.php')
-rw-r--r--include/items.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php
index 9becb9ffb..7f003ab57 100644
--- a/include/items.php
+++ b/include/items.php
@@ -945,7 +945,7 @@ function tgroup_deliver($uid,$item_id) {
$link = normalise_link($a->get_baseurl() . '/profile/' . $u[0]['nickname']);
- $cnt = preg_match_all('/\@\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
+ $cnt = preg_match_all('/[\@\!]\[url\=(.*?)\](.*?)\[\/url\]/ism',$item['body'],$matches,PREG_SET_ORDER);
if($cnt) {
foreach($matches as $mtch) {
if(link_compare($link,$mtch[1])) {