aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-30 18:51:44 -0700
committerfriendica <info@friendica.com>2012-07-30 18:51:44 -0700
commit02cc436ec7cf0cfca5fc9b5166cc537bbee53671 (patch)
treed7e5eea4e22ed1befeab5706a30ce1e1ac064972 /mod
parent194c52aee590a209cc38ee8fb322ff7dc4a9143d (diff)
downloadvolse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.tar.gz
volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.tar.bz2
volse-hubzilla-02cc436ec7cf0cfca5fc9b5166cc537bbee53671.zip
Added urlify to try and create webbie auto-suggestions out of whatever unicode stuff gets thrown in as a name. Currently this will only work for latin/european/cyrillic/russian, but possible to extend to ideographic forms.
Diffstat (limited to 'mod')
-rw-r--r--mod/display.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/display.php b/mod/display.php
index 91bc82d64..541df23ec 100644
--- a/mod/display.php
+++ b/mod/display.php
@@ -127,7 +127,7 @@ EOT;
}
else {
- $r = q("SELECT `id` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
+ $r = q("SELECT `id`,`deleted` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
dbesc($item_id),
dbesc($item_id)
);