]> git.mxchange.org Git - friendica.git/commitdiff
set permalink on photo tags
authorFriendika <info@friendika.com>
Thu, 9 Jun 2011 05:34:22 +0000 (22:34 -0700)
committerFriendika <info@friendika.com>
Thu, 9 Jun 2011 05:34:22 +0000 (22:34 -0700)
mod/photos.php

index f8749f5f7c60aca022e06b9c42e5fd33f71e7f4c..18fff703ef0e7ade8d663534cc288d40186aafcd 100644 (file)
@@ -510,8 +510,15 @@ foreach($_FILES AS $key => $val) {
                                        $arr['target'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/photos/' . $owner_record['nickname'] . '/image/' . $p[0]['resource-id'] . '" />' . "\n" . '<link rel="preview" type="image/jpeg" href="' . $a->get_baseurl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.jpg' . '" />') . '</link></target>';
 
                                        $item_id = item_store($arr);
-                                       if($item_id)
+                                       if($item_id) {
+                                               q("UPDATE `item` SET `plink` = '%s' WHERE `uid` = %d AND `id` = %d LIMIT 1",
+                                                       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");
+                                       }
                                }
 
                        }