aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-22 16:35:43 -0700
committerfriendica <info@friendica.com>2014-05-22 16:35:43 -0700
commit6f570a7df37e017184700cd0803fdd5ce9444cb1 (patch)
tree8bfd0a3bf638d4f85168b60d9ecc6a04e5366b92 /mod
parent6f7fb7a2ac3a8462b8f642436d191ccca720cd9e (diff)
downloadvolse-hubzilla-6f570a7df37e017184700cd0803fdd5ce9444cb1.tar.gz
volse-hubzilla-6f570a7df37e017184700cd0803fdd5ce9444cb1.tar.bz2
volse-hubzilla-6f570a7df37e017184700cd0803fdd5ce9444cb1.zip
mod_display: match "message_id begins with xxxx" as well as "message_id = xxxx"
Diffstat (limited to 'mod')
-rw-r--r--mod/display.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/display.php b/mod/display.php
index f4d4c38c3..efc3265c8 100644
--- a/mod/display.php
+++ b/mod/display.php
@@ -77,8 +77,8 @@ function display_content(&$a, $update = 0, $load = false) {
$target_item = null;
- $r = q("select id, uid, mid, parent_mid, item_restrict from item where mid = '%s' limit 1",
- dbesc($item_hash)
+ $r = q("select id, uid, mid, parent_mid, item_restrict from item where mid like '%s' limit 1",
+ dbesc($item_hash . '%')
);
if($r) {
@@ -149,6 +149,7 @@ function display_content(&$a, $update = 0, $load = false) {
if($load || ($_COOKIE['jsAvailable'] != 1)) {
$r = null;
+
if(local_user()) {
$r = q("SELECT * from item
WHERE item_restrict = 0
@@ -177,7 +178,6 @@ function display_content(&$a, $update = 0, $load = false) {
);
}
-
}
else {
$r = array();