From 56b95d50edb93f7e1f0aa5a5c6e5cd3c7ee6619c Mon Sep 17 00:00:00 2001 From: mike Date: Mon, 22 Oct 2012 19:18:50 +1100 Subject: more mod cleanups --- mod/pretheme.php | 2 +- mod/starred.php | 20 ++++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) (limited to 'mod') diff --git a/mod/pretheme.php b/mod/pretheme.php index 4584cb29e..1974f5f00 100644 --- a/mod/pretheme.php +++ b/mod/pretheme.php @@ -7,7 +7,7 @@ function pretheme_init(&$a) { $info = get_theme_info($theme); if($info) { // unfortunately there will be no translation for this string - $desc = $info['description']; + $desc = $info['description']; $version = $info['version']; $credits = $info['credits']; } diff --git a/mod/starred.php b/mod/starred.php index 035b81e76..af11acfb5 100644 --- a/mod/starred.php +++ b/mod/starred.php @@ -12,24 +12,28 @@ function starred_init(&$a) { if(! $message_id) killme(); - $r = q("SELECT starred FROM item WHERE uid = %d AND id = %d LIMIT 1", + $r = q("SELECT item_flags FROM item WHERE uid = %d AND id = %d LIMIT 1", intval(local_user()), intval($message_id) ); if(! count($r)) killme(); - if(! intval($r[0]['starred'])) - $starred = 1; + $item_flags = $r[0]['item_flags']; - $r = q("UPDATE item SET starred = %d WHERE uid = %d and id = %d LIMIT 1", - intval($starred), + if($item_flags & ITEM_STARRED) + $item_flags -= ITEM_STARRED; + else + $item_flags = $item_flags | ITEM_STARRED; + + + $r = q("UPDATE item SET item_flags = %d WHERE uid = %d and id = %d LIMIT 1", + intval($item_flags), intval(local_user()), intval($message_id) ); - // the json doesn't really matter, it will either be 0 or 1 - - echo json_encode($starred); + header('Content-type: application/json'); + echo json_encode(array('result' => intval($item_flags & ITEM_STARRED))); killme(); } -- cgit v1.2.3