]> git.mxchange.org Git - friendica.git/commitdiff
Usage of /display/(guid) as path instead of /display/(user)/(id)
authorMichael Vogel <icarus@dabo.de>
Mon, 21 Jul 2014 22:36:20 +0000 (00:36 +0200)
committerMichael Vogel <icarus@dabo.de>
Mon, 21 Jul 2014 22:36:20 +0000 (00:36 +0200)
Bugfix for adding tags to photos

16 files changed:
boot.php
include/diaspora.php
include/event.php
include/items.php
include/nav.php
include/onepoll.php
mod/content.php
mod/item.php
mod/notifications.php
mod/photos.php
mod/poke.php
mod/profiles.php
mod/settings.php
mod/tagger.php
object/Item.php
view/theme/vier/templates/wall_thread.tpl

index f5ce32ac5c0d4bd7b0e56a3acfc973e8a913a140..7fb7fba7d19d6f4823439d9a644bf16b301f070b 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -268,10 +268,13 @@ define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
 define ( 'ACTIVITY_MOOD',        NAMESPACE_ZOT . '/activity/mood' );
 
+define ( 'ACTIVITY_OBJ_BOOKMARK', NAMESPACE_ACTIVITY_SCHEMA . 'bookmark' );
 define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' );
 define ( 'ACTIVITY_OBJ_NOTE',    NAMESPACE_ACTIVITY_SCHEMA . 'note' );
 define ( 'ACTIVITY_OBJ_PERSON',  NAMESPACE_ACTIVITY_SCHEMA . 'person' );
+define ( 'ACTIVITY_OBJ_IMAGE',   NAMESPACE_ACTIVITY_SCHEMA . 'image' );
 define ( 'ACTIVITY_OBJ_PHOTO',   NAMESPACE_ACTIVITY_SCHEMA . 'photo' );
+define ( 'ACTIVITY_OBJ_VIDEO',   NAMESPACE_ACTIVITY_SCHEMA . 'video' );
 define ( 'ACTIVITY_OBJ_P_PHOTO', NAMESPACE_ACTIVITY_SCHEMA . 'profile-photo' );
 define ( 'ACTIVITY_OBJ_ALBUM',   NAMESPACE_ACTIVITY_SCHEMA . 'photo-album' );
 define ( 'ACTIVITY_OBJ_EVENT',   NAMESPACE_ACTIVITY_SCHEMA . 'event' );
@@ -1130,8 +1133,24 @@ if(! function_exists('check_plugins')) {
        }
 }
 
-
 function get_guid($size=16) {
+       $exists = true; // assume by default that we don't have a unique guid
+       do {
+               $prefix = "";
+               while (strlen($prefix) < ($size - 13))
+                       $prefix .= mt_rand();
+
+               $s = substr(uniqid($prefix), -$size);
+
+               $r = q("select id from guid where guid = '%s' limit 1", dbesc($s));
+               if(! count($r))
+                       $exists = false;
+       } while($exists);
+       q("insert into guid (guid) values ('%s') ", dbesc($s));
+       return $s;
+}
+
+/*function get_guid($size=16) {
        $exists = true; // assume by default that we don't have a unique guid
        do {
                $s = random_string($size);
@@ -1141,7 +1160,7 @@ function get_guid($size=16) {
        } while($exists);
        q("insert into guid ( guid ) values ( '%s' ) ", dbesc($s));
        return $s;
-}
+}*/
 
 
 // wrapper for adding a login box. If $register == true provide a registration
index 72f91ee56e6d509ffaa9c243a4fdb92e80d71b10..0eeacc487989660a7bdbd272083bc2ee398a75ce 100755 (executable)
@@ -1373,12 +1373,13 @@ function diaspora_comment($importer,$xml,$msg) {
 
        $message_id = item_store($datarray);
 
-       if($message_id) {
-               q("update item set plink = '%s' where id = %d",
-                       dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
-                       intval($message_id)
-               );
-       }
+       //if($message_id) {
+               //q("update item set plink = '%s' where id = %d",
+               //      //dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
+               //      dbesc($a->get_baseurl().'/display/'.$datarray['guid']),
+               //      intval($message_id)
+               //);
+       //}
 
        if(($parent_item['origin']) && (! $parent_author_signature)) {
                q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
@@ -1422,7 +1423,8 @@ function diaspora_comment($importer,$xml,$msg) {
                                'to_email'     => $importer['email'],
                                'uid'          => $importer['uid'],
                                'item'         => $datarray,
-                               'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id,
+                               //'link'                   => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id,
+                               'link'             => $a->get_baseurl().'/display/'.$datarray['guid'],
                                'source_name'  => $datarray['author-name'],
                                'source_link'  => $datarray['author-link'],
                                'source_photo' => $datarray['author-avatar'],
@@ -1957,7 +1959,8 @@ EOT;
 
        $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
        $alink = '[url=' . $parent_item['author-link'] . ']' . $parent_item['author-name'] . '[/url]';
-       $plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
+       //$plink = '[url=' . $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $parent_item['id'] . ']' . $post_type . '[/url]';
+       $plink = '[url='.$a->get_baseurl().'/display/'.$guid.']'.$post_type.'[/url]';
        $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
 
        $arr['app']  = 'Diaspora';
@@ -1973,12 +1976,13 @@ EOT;
        $message_id = item_store($arr);
 
 
-       if($message_id) {
-               q("update item set plink = '%s' where id = %d",
-                       dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
-                       intval($message_id)
-               );
-       }
+       //if($message_id) {
+       //      q("update item set plink = '%s' where id = %d",
+       //              //dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
+       //              dbesc($a->get_baseurl().'/display/'.$guid),
+       //              intval($message_id)
+       //      );
+       //}
 
        if(! $parent_author_signature) {
                q("insert into sign (`iid`,`signed_text`,`signature`,`signer`) values (%d,'%s','%s','%s') ",
index d474d084d94706304ce6110b7fec013ceb1fd556..f9f3b1320465c3b817a397329a12101b05395c13 100644 (file)
@@ -385,13 +385,18 @@ function event_store($arr) {
                $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
                        intval($arr['uid'])
                );
-               if(count($r))
-                       $plink = $a->get_baseurl() . '/display/' . $r[0]['nickname'] . '/' . $item_id;
+               //if(count($r))
+               //      $plink = $a->get_baseurl() . '/display/' . $r[0]['nickname'] . '/' . $item_id;
 
 
                if($item_id) {
-                       q("UPDATE `item` SET `plink` = '%s', `event-id` = %d  WHERE `uid` = %d AND `id` = %d",
-                               dbesc($plink),
+                       //q("UPDATE `item` SET `plink` = '%s', `event-id` = %d  WHERE `uid` = %d AND `id` = %d",
+                       //      dbesc($plink),
+                       //      intval($event['id']),
+                       //      intval($arr['uid']),
+                       //      intval($item_id)
+                       //);
+                       q("UPDATE `item` SET `event-id` = %d  WHERE `uid` = %d AND `id` = %d",
                                intval($event['id']),
                                intval($arr['uid']),
                                intval($item_id)
index 8e99d82df1adc37908d8b73c9f5253094739aa12..6f5c88a4789524f5f6b321cf0dce08aaa4a0e019 100644 (file)
@@ -678,8 +678,10 @@ function get_atom_elements($feed, $item, $contact = array()) {
        if($rawgeo)
                $res['coord'] = unxmlify($rawgeo[0]['data']);
 
-       if ($contact["network"] == NETWORK_FEED)
+       if ($contact["network"] == NETWORK_FEED) {
                $res['verb'] = ACTIVITY_POST;
+               $res['object-type'] = ACTIVITY_OBJ_NOTE;
+       }
 
        $rawverb = $item->get_item_tags(NAMESPACE_ACTIVITY, 'verb');
 
@@ -866,6 +868,7 @@ function get_atom_elements($feed, $item, $contact = array()) {
        if (isset($contact["network"]) AND ($contact["network"] == NETWORK_FEED) AND $contact['fetch_further_information']) {
                $res["body"] = $res["title"].add_page_info($res['plink']);
                $res["title"] = "";
+               $res["object-type"] = ACTIVITY_OBJ_BOOKMARK;
        } elseif (isset($contact["network"]) AND ($contact["network"] == NETWORK_OSTATUS))
                $res["body"] = add_page_info_to_body($res["body"]);
        elseif (isset($contact["network"]) AND ($contact["network"] == NETWORK_FEED) AND strstr($res['plink'], ".app.net/")) {
@@ -1093,9 +1096,14 @@ function item_store($arr,$force_parent = false) {
        $arr['attach']        = ((x($arr,'attach'))        ? notags(trim($arr['attach']))        : '');
        $arr['app']           = ((x($arr,'app'))           ? notags(trim($arr['app']))           : '');
        $arr['origin']        = ((x($arr,'origin'))        ? intval($arr['origin'])              : 0 );
-       $arr['guid']          = ((x($arr,'guid'))          ? notags(trim($arr['guid']))          : get_guid());
+       $arr['guid']          = ((x($arr,'guid'))          ? notags(trim($arr['guid']))          : get_guid(30));
        $arr['network']       = ((x($arr,'network'))       ? trim($arr['network'])               : '');
 
+       if ($arr['plink'] == "") {
+               $a = get_app();
+               $arr['plink'] = $a->get_baseurl().'/display/'.$arr['guid'];
+       }
+
        if ($arr['network'] == "") {
                $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
                        intval($arr['contact-id']),
@@ -1274,7 +1282,8 @@ function item_store($arr,$force_parent = false) {
                                        'to_email'     => $u[0]['email'],
                                        'uid'          => $u[0]['uid'],
                                        'item'         => $item[0],
-                                       'link'         => $a->get_baseurl().'/display/'.$u[0]['nickname'].'/'.$current_post,
+                                       //'link'         => $a->get_baseurl().'/display/'.$u[0]['nickname'].'/'.$current_post,
+                                       'link'         => $a->get_baseurl().'/display/'.$arr['guid'],
                                        'source_name'  => $item[0]['author-name'],
                                        'source_link'  => $item[0]['author-link'],
                                        'source_photo' => $item[0]['author-avatar'],
@@ -1395,6 +1404,15 @@ function item_store($arr,$force_parent = false) {
 
        return $current_post;
 }
+
+function get_item_guid($id) {
+       $r = q("SELECT `guid` FROM `item` WHERE `id` = %d LIMIT 1", intval($id));
+       if (count($r))
+               return($r[0]["guid"]);
+       else
+               return("");
+}
+
 // return - test
 function get_item_contact($item,$contacts) {
        if(! count($contacts) || (! is_array($item)))
@@ -1494,7 +1512,8 @@ function tag_deliver($uid,$item_id) {
                'to_email'     => $u[0]['email'],
                'uid'          => $u[0]['uid'],
                'item'         => $item,
-               'link'         => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'],
+               //'link'         => $a->get_baseurl() . '/display/' . $u[0]['nickname'] . '/' . $item['id'],
+               'link'         => $a->get_baseurl() . '/display/'.get_item_guid($item['id']),
                'source_name'  => $item['author-name'],
                'source_link'  => $item['author-link'],
                'source_photo' => $photo,
@@ -3309,7 +3328,8 @@ function local_delivery($importer,$data) {
                                                                'to_email'     => $importer['email'],
                                                                'uid'          => $importer['importer_uid'],
                                                                'item'         => $datarray,
-                                                               'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
+                                                               //'link'                   => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
+                                                               'link'             => $a->get_baseurl().'/display/'.get_item_guid($posted_id),
                                                                'source_name'  => stripslashes($datarray['author-name']),
                                                                'source_link'  => $datarray['author-link'],
                                                                'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
@@ -3473,7 +3493,8 @@ function local_delivery($importer,$data) {
                                                                        'to_email'     => $importer['email'],
                                                                        'uid'          => $importer['importer_uid'],
                                                                        'item'         => $datarray,
-                                                                       'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
+                                                                       //'link'                   => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
+                                                                       'link'             => $a->get_baseurl().'/display/'.get_item_guid($posted_id),
                                                                        'source_name'  => stripslashes($datarray['author-name']),
                                                                        'source_link'  => $datarray['author-link'],
                                                                        'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
@@ -3626,7 +3647,8 @@ function local_delivery($importer,$data) {
                                                        'to_email'     => $importer['email'],
                                                        'uid'          => $importer['importer_uid'],
                                                        'item'         => $datarray,
-                                                       'link'             => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
+                                                       //'link'                   => $a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $posted_id,
+                                                       'link'             => $a->get_baseurl().'/display/'.get_item_guid($posted_id),
                                                        'source_name'  => stripslashes($datarray['author-name']),
                                                        'source_link'  => $datarray['author-link'],
                                                        'source_photo' => ((link_compare($datarray['author-link'],$importer['url']))
@@ -3717,7 +3739,8 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
                                group_add_member($r[0]['uid'],'',$contact_record['id'],$r[0]['def_gid']);
                        }
 
-                       if(($r[0]['notify-flags'] & NOTIFY_INTRO) && ($r[0]['page-flags'] == PAGE_NORMAL)) {
+                       if(($r[0]['notify-flags'] & NOTIFY_INTRO) &&
+                               (($r[0]['page-flags'] == PAGE_NORMAL) OR ($r[0]['page-flags'] == PAGE_SOAPBOX))) {
                                $email_tpl = get_intltext_template('follow_notify_eml.tpl');
                                $email = replace_macros($email_tpl, array(
                                        '$requestor' => ((strlen($name)) ? $name : t('[Name Withheld]')),
index fd92b66d154e44fb302c3c61b685e51f908995da..f838830a8873b109537acec32edc15de36907c96 100644 (file)
@@ -148,7 +148,7 @@ function nav_info(&$a) {
 
                /* only show friend requests for normal pages. Other page types have automatic friendship. */
 
-               if($_SESSION['page_flags'] == PAGE_NORMAL || $_SESSION['page_flags'] == PAGE_PRVGROUP) {
+               if($_SESSION['page_flags'] == PAGE_NORMAL || $_SESSION['page_flags'] == PAGE_SOAPBOX || $_SESSION['page_flags'] == PAGE_PRVGROUP) {
                        $nav['introductions'] = array('notifications/intros',   t('Introductions'), "", t('Friend Requests'));
                        $nav['notifications'] = array('notifications',  t('Notifications'), "", t('Notifications'));
                        $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", "");
@@ -166,12 +166,12 @@ function nav_info(&$a) {
                }
 
                $nav['delegations'] = Array('delegate', t('Delegations'), "", t('Delegate Page Management'));
-               
+
                $nav['settings'] = array('settings', t('Settings'),"", t('Account settings'));
-               
+
                if(feature_enabled(local_user(),'multi_profiles'))
                        $nav['profiles'] = array('profiles', t('Profiles'),"", t('Manage/Edit Profiles'));
-               
+
                $nav['contacts'] = array('contacts', t('Contacts'),"", t('Manage/edit friends and contacts'));
        }
 
index f5c253803b64257dde136ad9a49a57074befb160..9052937fdca03d05bd713107d70b9742edd35389 100644 (file)
@@ -331,6 +331,7 @@ function onepoll_run(&$argv, &$argc){
 
                                                $datarray = array();
                                                $datarray['verb'] = ACTIVITY_POST;
+                                               $datarray['object-type'] = ACTIVITY_OBJ_NOTE;
        //                                      $meta = email_msg_meta($mbox,$msg_uid);
        //                                      $headers = email_msg_headers($mbox,$msg_uid);
 
index a992d1c8a70643737c22f5105e730d58fef53900..fa32b576cd00a2d13046480ec32e17d43aa07327 100644 (file)
@@ -493,7 +493,8 @@ function render_content(&$a, $items, $mode, $update, $preview = false) {
                                        'like' => '',
                                        'dislike' => '',
                                        'comment' => '',
-                                       'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
+                                       //'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state) . '/display/' . $nickname . '/' . $item['id'], 'title'=> t('View in context'))),
+                                       'conv' => (($preview) ? '' : array('href'=> $a->get_baseurl($ssl_state).'/display/'.$item['guid'], 'title'=> t('View in context'))),
                                        'previewing' => $previewing,
                                        'wait' => t('Please wait'),
                                );
index cf79913eb4c3478b87c6093e5cd1d96b3116a024..ac8abac996e36ac9826c8c1f4f0eab8570458882 100644 (file)
@@ -203,9 +203,9 @@ function item_post(&$a) {
                $private           = $orig_post['private'];
                $pubmail_enable    = $orig_post['pubmail'];
                $network           = $orig_post['network'];
+               $guid              = $orig_post['guid'];
 
-       }
-       else {
+       } else {
 
                // if coming from the API and no privacy settings are set, 
                // use the user default permissions - as they won't have
@@ -238,6 +238,7 @@ function item_post(&$a) {
                $emailcc           = notags(trim($_REQUEST['emailcc']));
                $body              = escape_tags(trim($_REQUEST['body']));
                $network           = notags(trim($_REQUEST['network']));
+               $guid              = get_guid(32);
 
 
                $naked_body = preg_replace('/\[(.+?)\]/','',$body);
@@ -629,6 +630,7 @@ function item_post(&$a) {
        $datarray['commented']     = datetime_convert();
        $datarray['received']      = datetime_convert();
        $datarray['changed']       = datetime_convert();
+       $datarray['guid']          = $guid;
        $datarray['uri']           = $uri;
        $datarray['title']         = $title;
        $datarray['body']          = $body;
@@ -664,8 +666,6 @@ function item_post(&$a) {
 
        if($orig_post)
                $datarray['edit']      = true;
-       else
-               $datarray['guid']      = get_guid();
 
        // preview mode - prepare the body for display and send it via json
 
@@ -823,7 +823,8 @@ function item_post(&$a) {
                                        'to_email'     => $user['email'],
                                        'uid'          => $user['uid'],
                                        'item'         => $datarray,
-                                       'link'             => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
+                                       //'link'                   => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
+                                       'link'             => $a->get_baseurl().'/display/'.$datarray['guid'],
                                        'source_name'  => $datarray['author-name'],
                                        'source_link'  => $datarray['author-link'],
                                        'source_photo' => $datarray['author-avatar'],
@@ -851,7 +852,8 @@ function item_post(&$a) {
                                        'to_email'     => $user['email'],
                                        'uid'          => $user['uid'],
                                        'item'         => $datarray,
-                                       'link'             => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
+                                       //'link'                   => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id,
+                                       'link'             => $a->get_baseurl().'/display/'.$datarray['guid'],
                                        'source_name'  => $datarray['author-name'],
                                        'source_link'  => $datarray['author-link'],
                                        'source_photo' => $datarray['author-avatar'],
@@ -870,7 +872,8 @@ function item_post(&$a) {
                        WHERE `id` = %d",
                        intval($parent),
                        dbesc(($parent == $post_id) ? $uri : $parent_item['uri']),
-                       dbesc($a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id),
+                       //dbesc($a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id),
+                       dbesc($a->get_baseurl().'/display/'.$datarray['guid']),
                        dbesc(datetime_convert()),
                        intval($post_id)
                );
@@ -903,7 +906,8 @@ function item_post(&$a) {
        update_thread($parent);
 
        $datarray['id']    = $post_id;
-       $datarray['plink'] = $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id;
+       //$datarray['plink'] = $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id;
+       $datarray['plink'] = $a->get_baseurl().'/display/'.$datarray['guid'];
 
        call_hooks('post_local_end', $datarray);
 
index 75d89f2db45cf51939b2a6d5357c482c14dd6f08..62db8c8f96d2c0c91c7a3424a8e0eccd5002c797 100644 (file)
@@ -121,7 +121,7 @@ function notifications_content(&$a) {
                $notif_content .= '<a href="' . ((strlen($sql_extra)) ? 'notifications/intros/all' : 'notifications/intros' ) . '" id="notifications-show-hide-link" >'
                        . ((strlen($sql_extra)) ? t('Show Ignored Requests') : t('Hide Ignored Requests')) . '</a></div>' . "\r\n";
 
-               $r = q("SELECT COUNT(*) AS `total` FROM `intro` 
+               $r = q("SELECT COUNT(*) AS `total` FROM `intro`
                        WHERE `intro`.`uid` = %d $sql_extra AND `intro`.`blocked` = 0 ",
                                intval($_SESSION['uid'])
                );
@@ -229,59 +229,62 @@ function notifications_content(&$a) {
 
                $notif_tpl = get_markup_template('notifications.tpl');
 
-               $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, 
-                               `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`, 
-                               `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` 
+               $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
+                               `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`,
+                               `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`, `pitem`.`guid` as `pguid`
                                FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
                                WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND `pitem`.`parent` != 0 AND
                                 `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 0 ORDER BY `item`.`created` DESC" ,
                        intval(local_user())
                );
-               
+
                $tpl_item_likes = get_markup_template('notifications_likes_item.tpl');
                $tpl_item_dislikes = get_markup_template('notifications_dislikes_item.tpl');
                $tpl_item_friends = get_markup_template('notifications_friends_item.tpl');
                $tpl_item_comments = get_markup_template('notifications_comments_item.tpl');
                $tpl_item_posts = get_markup_template('notifications_posts_item.tpl');
-               
+
                $notif_content = '';
-               
+
                if ($r) {
-                       
+
                        foreach ($r as $it) {
                                switch($it['verb']){
                                        case ACTIVITY_LIKE:
                                                $notif_content .= replace_macros($tpl_item_likes,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                                break;
-                                               
+
                                        case ACTIVITY_DISLIKE:
                                                $notif_content .= replace_macros($tpl_item_dislikes,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                                break;
-                                               
+
                                        case ACTIVITY_FRIEND:
-                                       
+
                                                $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
                                                $obj = parse_xml_string($xmlhead.$it['object']);
                                                $it['fname'] = $obj->title;
-                                               
+
                                                $notif_content .= replace_macros($tpl_item_friends,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                                break;
-                                               
+
                                        default:
                                                $item_text = (($it['id'] == $it['parent'])
                                                        ? sprintf( t("%s created a new post"), $it['author-name'])
@@ -289,36 +292,37 @@ function notifications_content(&$a) {
                                                $tpl = (($it['id'] == $it['parent']) ? $tpl_item_posts : $tpl_item_comments);
 
                                                $notif_content .= replace_macros($tpl,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => $item_text,
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                }
                        }
-                       
+
                } else {
-                       
+
                        $notif_content = t('No more network notifications.');
                }
-               
+
                $o .= replace_macros($notif_tpl, array(
                        '$notif_header' => t('Network Notifications'),
                        '$tabs' => $tabs,
                        '$notif_content' => $notif_content,
                ));
-               
+
        } else if (($a->argc > 1) && ($a->argv[1] == 'system')) {
-               
+
                $notif_tpl = get_markup_template('notifications.tpl');
-               
+
                $not_tpl = get_markup_template('notify.tpl');
                require_once('include/bbcode.php');
 
                $r = q("SELECT * from notify where uid = %d and seen = 0 order by date desc",
                        intval(local_user())
                );
-               
+
                if (count($r) > 0) {
                        foreach ($r as $it) {
                                $notif_content .= replace_macros($not_tpl,array(
@@ -331,7 +335,7 @@ function notifications_content(&$a) {
                } else {
                        $notif_content .= t('No more system notifications.');
                }
-               
+
                $o .= replace_macros($notif_tpl, array(
                        '$notif_header' => t('System Notifications'),
                        '$tabs' => $tabs,
@@ -339,9 +343,9 @@ function notifications_content(&$a) {
                ));
 
        } else if (($a->argc > 1) && ($a->argv[1] == 'personal')) {
-               
+
                $notif_tpl = get_markup_template('notifications.tpl');
-               
+
                $myurl = $a->get_baseurl(true) . '/profile/'. $a->user['nickname'];
                $myurl = substr($myurl,strpos($myurl,'://')+3);
                $myurl = str_replace(array('www.','.'),array('','\\.'),$myurl);
@@ -353,60 +357,63 @@ function notifications_content(&$a) {
                );
 
 
-               $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, 
-                               `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`, 
-                               `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` 
+               $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
+                               `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`,
+                               `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`, `pitem`.`guid` as `pguid`
                                FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
-                               WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 
+                               WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1
                                $sql_extra
                                AND `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 0 ORDER BY `item`.`created` DESC" ,
                        intval(local_user())
                );
-               
+
                $tpl_item_likes = get_markup_template('notifications_likes_item.tpl');
                $tpl_item_dislikes = get_markup_template('notifications_dislikes_item.tpl');
                $tpl_item_friends = get_markup_template('notifications_friends_item.tpl');
                $tpl_item_comments = get_markup_template('notifications_comments_item.tpl');
                $tpl_item_posts = get_markup_template('notifications_posts_item.tpl');
-               
+
                $notif_content = '';
-               
+
                if (count($r) > 0) {
-                       
+
                        foreach ($r as $it) {
                                switch($it['verb']){
                                        case ACTIVITY_LIKE:
                                                $notif_content .= replace_macros($tpl_item_likes,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                                break;
-                                               
+
                                        case ACTIVITY_DISLIKE:
                                                $notif_content .= replace_macros($tpl_item_dislikes,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                                break;
-                                               
+
                                        case ACTIVITY_FRIEND:
-                                       
+
                                                $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
                                                $obj = parse_xml_string($xmlhead.$it['object']);
                                                $it['fname'] = $obj->title;
-                                               
+
                                                $notif_content .= replace_macros($tpl_item_friends,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                                break;
-                                               
+
                                        default:
                                                $item_text = (($it['id'] == $it['parent'])
                                                        ? sprintf( t("%s created a new post"), $it['author-name'])
@@ -414,57 +421,59 @@ function notifications_content(&$a) {
                                                $tpl = (($it['id'] == $it['parent']) ? $tpl_item_posts : $tpl_item_comments);
 
                                                $notif_content .= replace_macros($tpl,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => $item_text,
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                }
                        }
-                       
+
                } else {
-                       
+
                        $notif_content = t('No more personal notifications.');
                }
-               
+
                $o .= replace_macros($notif_tpl, array(
                        '$notif_header' => t('Personal Notifications'),
                        '$tabs' => $tabs,
                        '$notif_content' => $notif_content,
                ));
-               
+
 
 
 
 
 
        } else if (($a->argc > 1) && ($a->argv[1] == 'home')) {
-               
+
                $notif_tpl = get_markup_template('notifications.tpl');
-               
-               $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, 
-                               `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`, 
-                               `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` 
+
+               $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`,
+                               `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object` as `object`,
+                               `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink`, `pitem`.`guid` as `pguid`
                                FROM `item` INNER JOIN `item` as `pitem` ON  `pitem`.`id`=`item`.`parent`
                                WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND
                                 `item`.`deleted` = 0 AND `item`.`uid` = %d AND `item`.`wall` = 1 ORDER BY `item`.`created` DESC",
                        intval(local_user())
                );
-               
+
                $tpl_item_likes = get_markup_template('notifications_likes_item.tpl');
                $tpl_item_dislikes = get_markup_template('notifications_dislikes_item.tpl');
                $tpl_item_friends = get_markup_template('notifications_friends_item.tpl');
                $tpl_item_comments = get_markup_template('notifications_comments_item.tpl');
-               
+
                $notif_content = '';
-               
+
                if (count($r) > 0) {
-                       
+
                        foreach ($r as $it) {
                                switch($it['verb']){
                                        case ACTIVITY_LIKE:
                                                $notif_content .= replace_macros($tpl_item_likes,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
@@ -473,7 +482,8 @@ function notifications_content(&$a) {
                                                break;
                                        case ACTIVITY_DISLIKE:
                                                $notif_content .= replace_macros($tpl_item_dislikes,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
@@ -481,13 +491,14 @@ function notifications_content(&$a) {
 
                                                break;
                                        case ACTIVITY_FRIEND:
-                                       
+
                                                $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
                                                $obj = parse_xml_string($xmlhead.$it['object']);
                                                $it['fname'] = $obj->title;
-                                               
+
                                                $notif_content .= replace_macros($tpl_item_friends,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']),
                                                        '$item_when' => relative_date($it['created'])
@@ -496,18 +507,19 @@ function notifications_content(&$a) {
                                                break;
                                        default:
                                                $notif_content .= replace_macros($tpl_item_comments,array(
-                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'],
+                                                       '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'],
                                                        '$item_image' => $it['author-avatar'],
                                                        '$item_text' => sprintf( t("%s commented on %s's post"), $it['author-name'], $it['pname']),
                                                        '$item_when' => relative_date($it['created'])
                                                ));
                                }
                        }
-                               
+
                } else {
                        $notif_content = t('No more home notifications.');
                }
-               
+
                $o .= replace_macros($notif_tpl, array(
                        '$notif_header' => t('Home Notifications'),
                        '$tabs' => $tabs,
index 0e9055d05dcf1cff004e54019a93a73c4847d686..3e88e4d019df8a28d76d2af6c65edf93d605190e 100644 (file)
@@ -341,7 +341,6 @@ function photos_post(&$a) {
 
        if(($a->argc > 2) && ((x($_POST,'desc') !== false) || (x($_POST,'newtag') !== false)) || (x($_POST,'albname') !== false)) {
 
-
                $desc        = ((x($_POST,'desc'))    ? notags(trim($_POST['desc']))    : '');
                $rawtags     = ((x($_POST,'newtag'))  ? notags(trim($_POST['newtag']))  : '');
                $item_id     = ((x($_POST,'item_id')) ? intval($_POST['item_id'])       : 0);
@@ -436,19 +435,19 @@ function photos_post(&$a) {
                $visibility = 0;
                if($p[0]['desc'] !== $desc || strlen($rawtags))
                        $visibility = 1;
-               
+
                if(! $item_id) {
 
                        // Create item container
 
                        $title = '';
                        $uri = item_new_uri($a->get_hostname(),$page_owner_uid);
-                       
+
                        $arr = array();
 
                        $arr['uid']           = $page_owner_uid;
                        $arr['uri']           = $uri;
-                       $arr['parent-uri']    = $uri; 
+                       $arr['parent-uri']    = $uri;
                        $arr['type']          = 'photo';
                        $arr['wall']          = 1;
                        $arr['resource-id']   = $p[0]['resource-id'];
@@ -586,14 +585,17 @@ function photos_post(&$a) {
                                                        if(strlen($str_tags))
                                                                $str_tags .= ',';
                                                        $profile = str_replace(',','%2c',$profile);
-                                                       $str_tags .= '@[url=' . $profile . ']' . $newname       . '[/url]';
+                                                       $str_tags .= '@[url='.$profile.']'.$newname.'[/url]';
                                                }
+                                       } elseif (strpos($tag,'#') === 0) {
+                                               $tagname = substr($tag, 1);
+                                               $str_tags .= '#[url='.$a->get_baseurl()."/search?tag=".$tagname.']'.$tagname.'[/url]';
                                        }
                                }
                        }
 
                        $newtag = $old_tag;
-                       if(strlen($newtag) && strlen($str_tags)) 
+                       if(strlen($newtag) && strlen($str_tags))
                                $newtag .= ',';
                        $newtag .= $str_tags;
 
@@ -672,11 +674,11 @@ function photos_post(&$a) {
 
                                        $item_id = item_store($arr);
                                        if($item_id) {
-                                               q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
-                                                       dbesc($a->get_baseurl() . '/display/' . $owner_record['nickname'] . '/' . $item_id),
-                                                       intval($page_owner_uid),
-                                                       intval($item_id)
-                                               );
+                                               //q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
+                                               //      dbesc($a->get_baseurl() . '/display/' . $owner_record['nickname'] . '/' . $item_id),
+                                               //      intval($page_owner_uid),
+                                               //      intval($item_id)
+                                               //);
 
                                                proc_run('php',"include/notifier.php","tag","$item_id");
                                        }
@@ -880,13 +882,13 @@ function photos_post(&$a) {
 
        $item_id = item_store($arr);
 
-       if($item_id) {
-               q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
-                       dbesc($a->get_baseurl() . '/display/' . $owner_record['nickname'] . '/' . $item_id),
-                       intval($page_owner_uid),
-                       intval($item_id)
-               );
-       }
+       //if($item_id) {
+       //      q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
+       //              dbesc($a->get_baseurl() . '/display/' . $owner_record['nickname'] . '/' . $item_id),
+       //              intval($page_owner_uid),
+       //              intval($item_id)
+       //      );
+       //}
 
        if($visible)
                proc_run('php', "include/notifier.php", 'wall-new', $item_id);
index 52e043118a212a59e3f713768e7da4037c8b1ef4..db1c94963618f8acbe5f84e64d8b4a2acc8d4872 100644 (file)
@@ -111,11 +111,11 @@ function poke_init(&$a) {
 
        $item_id = item_store($arr);
        if($item_id) {
-               q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
-                       dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id),
-                       intval($uid),
-                       intval($item_id)
-               );
+               //q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d",
+               //      dbesc($a->get_baseurl() . '/display/' . $poster['nickname'] . '/' . $item_id),
+               //      intval($uid),
+               //      intval($item_id)
+               //);
                proc_run('php',"include/notifier.php","tag","$item_id");
        }
 
index e57a0fa8414fbc02f846afdeb4bdb213b0fb9016..b715fc3eed78df3d33e93ad698b274d75b623b61 100644 (file)
@@ -558,10 +558,10 @@ function profile_activity($changed, $value) {
        if($i) {
 
                // give it a permanent link
-               q("update item set plink = '%s' where id = %d",
-                       dbesc($a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $i),
-                       intval($i)
-               );
+               //q("update item set plink = '%s' where id = %d",
+               //      dbesc($a->get_baseurl() . '/display/' . $a->user['nickname'] . '/' . $i),
+               //      intval($i)
+               //);
 
                proc_run('php',"include/notifier.php","activity","$i");
 
index c00ecc2e377641c1d908d755ca92004a97bc7c12..a4145e48c430603cec558774addcf623d65cd8ca 100644 (file)
@@ -970,15 +970,15 @@ function settings_content(&$a) {
                                                                        ($a->user['page-flags'] == PAGE_NORMAL)),
 
                '$page_soapbox'         => array('page-flags', t('Soapbox Page'), PAGE_SOAPBOX,
-                                                                       t('Automatically approve all connection/friend requests as read-only fans'), 
+                                                                       t('Automatically approve all connection/friend requests as read-only fans'),
                                                                        ($a->user['page-flags'] == PAGE_SOAPBOX)),
 
                '$page_community'       => array('page-flags', t('Community Forum/Celebrity Account'), PAGE_COMMUNITY,
-                                                                       t('Automatically approve all connection/friend requests as read-write fans'), 
+                                                                       t('Automatically approve all connection/friend requests as read-write fans'),
                                                                        ($a->user['page-flags'] == PAGE_COMMUNITY)),
 
                '$page_freelove'        => array('page-flags', t('Automatic Friend Page'), PAGE_FREELOVE,
-                                                                       t('Automatically approve all connection/friend requests as friends'), 
+                                                                       t('Automatically approve all connection/friend requests as friends'),
                                                                        ($a->user['page-flags'] == PAGE_FREELOVE)),
 
                '$page_prvgroup'        => array('page-flags', t('Private Forum [Experimental]'), PAGE_PRVGROUP,
index 401f285125a5e84ebf7ca7317136f5a8cb961fa1..2c469a58bbf2571cf3924d3fb85ac495fb1bab69 100644 (file)
@@ -138,10 +138,10 @@ EOT;
 
        $post_id = item_store($arr);
 
-       q("UPDATE `item` set plink = '%s' where id = %d",
-               dbesc($a->get_baseurl() . '/display/' . $owner_nick . '/' . $post_id),
-               intval($post_id)
-       );
+//     q("UPDATE `item` set plink = '%s' where id = %d",
+//             dbesc($a->get_baseurl() . '/display/' . $owner_nick . '/' . $post_id),
+//             intval($post_id)
+//     );
 
 
        if(! $item['visible']) {
index 3ea970e7ff4496d2ec7eba55db955c110a08589b..7c78a1d333ef9391ef97579df6bd42dd5c45bb78 100644 (file)
@@ -45,7 +45,7 @@ class Item extends BaseObject {
                                }
                        }
                }
-               
+
                $this->writable = ($this->get_data_value('writable') || $this->get_data_value('self'));
 
                $ssl_state = ((local_user()) ? true : false);
@@ -304,6 +304,7 @@ class Item extends BaseObject {
                        'body' => $body_e,
                        'text' => $text_e,
                        'id' => $this->get_id(),
+                       'guid' => $item['guid'],
                        'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])),
                        'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])),
                        'to' => t('to'),
@@ -396,7 +397,7 @@ class Item extends BaseObject {
 
                return $result;
        }
-       
+
        public function get_id() {
                return $this->get_data_value('id');
        }
@@ -427,7 +428,7 @@ class Item extends BaseObject {
                if(activity_match($item->get_data_value('verb'),ACTIVITY_LIKE) || activity_match($item->get_data_value('verb'),ACTIVITY_DISLIKE)) {
                        return false;
                }
-               
+
                $item->set_parent($this);
                $this->children[] = $item;
                return end($this->children);
index 06adc011ccef9f5f2ca9d4ed832f2c7d76e3752b..22a878f7bf680c3598dfbe43e92521ccd7a94ce4 100644 (file)
@@ -32,7 +32,7 @@
        <img id="like-rotator-{{$item.id}}" class="like-rotator" src="images/rotator.gif" alt="{{$item.wait}}" title="{{$item.wait}}" style="display: none;" />
 </div>
 
-<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}}" id="item-{{$item.id}}">
+<div class="wall-item-container {{$item.indent}} {{$item.shiny}} {{$item.network}}" id="item-{{$item.guid}}">
        <div class="wall-item-item">
                <div class="wall-item-info">
                        <div class="contact-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}"