aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-01 18:27:45 -0800
committerfriendica <info@friendica.com>2011-12-01 18:27:45 -0800
commit513c1c0d683fc770de7d9a78e0a83df9211bb4aa (patch)
tree384a8e056de800f6656ff9df3935e42f3e81bf07 /mod
parentac3df5fece6e1f5a6eab3a2694b15bcf45ed31e4 (diff)
downloadvolse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.tar.gz
volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.tar.bz2
volse-hubzilla-513c1c0d683fc770de7d9a78e0a83df9211bb4aa.zip
dynamic delete icons for saved-search on network page
Diffstat (limited to 'mod')
-rw-r--r--mod/network.php5
-rw-r--r--mod/search.php2
2 files changed, 3 insertions, 4 deletions
diff --git a/mod/network.php b/mod/network.php
index e05791614..8df3f83df 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -68,17 +68,16 @@ function saved_searches($search) {
$o = '';
- $r = q("select `term` from `search` WHERE `uid` = %d",
+ $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
intval(local_user())
);
$saved = array();
-
-
if(count($r)) {
foreach($r as $rr) {
$saved[] = array(
+ 'id' => $rr['id'],
'term' => $rr['term'],
'encodedterm' => urlencode($rr['term']),
'delete' => t('Remove term'),
diff --git a/mod/search.php b/mod/search.php
index 819100204..0b58db5d1 100644
--- a/mod/search.php
+++ b/mod/search.php
@@ -4,7 +4,7 @@ function search_saved_searches() {
$o = '';
- $r = q("select `term` from `search` WHERE `uid` = %d",
+ $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
intval(local_user())
);