]> git.mxchange.org Git - friendica.git/blobdiff - mod/photos.php
use sha1 keys for friends as well
[friendica.git] / mod / photos.php
index 8f33ac067d2b488463efa4b19c9ddf61da999d1f..f570d5b13ed376efec631788aba9ef599630caa7 100644 (file)
@@ -1,12 +1,14 @@
 <?php
 
-require_once('Photo.php');
+require_once('include/Photo.php');
 require_once('include/items.php');
-require_once('view/acl_selectors.php');
+require_once('include/acl_selectors.php');
 require_once('include/bbcode.php');
 
 function photos_init(&$a) {
 
+       $o = '';
+
        if($a->argc > 1) {
                $nick = $a->argv[1];
                $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' LIMIT 1",
@@ -36,6 +38,9 @@ function photos_init(&$a) {
                        }
                        $o .= '</ul>';
                }
+
+               if(! x($a->page,'aside'))
+                       $a->page['aside'] = '';
                $a->page['aside'] .= $o;
        }
        return;
@@ -130,12 +135,11 @@ function photos_post(&$a) {
 
                                        $drop_id = intval($rr['id']);
                                        $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
-                                       $proc_debug = get_config('system','proc_debug');
 
                                        // send the notification upstream/downstream as the case may be
 
                                        if($rr['visible'])
-                                               proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" $proc_debug & ",
+                                               proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" & ",
                                                        array(),$foo));
 
                                }
@@ -146,7 +150,7 @@ function photos_post(&$a) {
        }
 
        if(($a->argc > 1) && (x($_POST,'delete')) && ($_POST['delete'] == t('Delete Photo'))) {
-               $r = q("SELECT `id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
+               $r = q("SELECT `id`, `resource-id` FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' LIMIT 1",
                        intval(local_user()),
                        dbesc($a->argv[1])
                );
@@ -170,13 +174,9 @@ function photos_post(&$a) {
                                $url = $a->get_baseurl();
                                $drop_id = intval($i[0]['id']);
                                $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
-                               
-                               $proc_debug = get_config('system','proc_debug');
-
-                               // send the notification upstream/downstream as the case may be
 
                                if($i[0]['visible'])
-                                       proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" $proc_debug & ",
+                                       proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" & ",
                                                array(),$foo));
                        }
                }
@@ -213,23 +213,26 @@ function photos_post(&$a) {
 
                        $arr = array();
 
-                       $arr['uid']          = local_user();
-                       $arr['uri']          = $uri;
-                       $arr['parent-uri']   = $uri; 
-                       $arr['type']         = 'photo';
-                       $arr['wall']         = 1;
-                       $arr['resource-id']  = $p[0]['resource-id'];
-                       $arr['contact-id']   = $contact_record['id'];
-                       $arr['owner-name']   = $contact_record['name'];
-                       $arr['owner-link']   = $contact_record['url'];
-                       $arr['owner-avatar'] = $contact_record['thumb'];
-                       $arr['title']        = $title;
-                       $arr['allow_cid']    = $p[0]['allow_cid'];
-                       $arr['allow_gid']    = $p[0]['allow_gid'];
-                       $arr['deny_cid']     = $p[0]['deny_cid'];
-                       $arr['deny_gid']     = $p[0]['deny_gid'];
-                       $arr['last-child']   = 1;
-                       $arr['body']         = '[url=' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $p[0]['resource-id'] . ']' 
+                       $arr['uid']           = local_user();
+                       $arr['uri']           = $uri;
+                       $arr['parent-uri']    = $uri; 
+                       $arr['type']          = 'photo';
+                       $arr['wall']          = 1;
+                       $arr['resource-id']   = $p[0]['resource-id'];
+                       $arr['contact-id']    = $contact_record['id'];
+                       $arr['owner-name']    = $contact_record['name'];
+                       $arr['owner-link']    = $contact_record['url'];
+                       $arr['owner-avatar']  = $contact_record['thumb'];
+                       $arr['author-name']   = $contact_record['name'];
+                       $arr['author-link']   = $contact_record['url'];
+                       $arr['author-avatar'] = $contact_record['thumb'];
+                       $arr['title']         = $title;
+                       $arr['allow_cid']     = $p[0]['allow_cid'];
+                       $arr['allow_gid']     = $p[0]['allow_gid'];
+                       $arr['deny_cid']      = $p[0]['deny_cid'];
+                       $arr['deny_gid']      = $p[0]['deny_gid'];
+                       $arr['last-child']    = 1;
+                       $arr['body']          = '[url=' . $a->get_baseurl() . '/photos/' . $a->data['user']['nickname'] . '/image/' . $p[0]['resource-id'] . ']' 
                                                . '[img]' . $a->get_baseurl() . '/photo/' . $p[0]['resource-id'] . '-' . $p[0]['scale'] . '.jpg' . '[/img]' 
                                                . '[/url]';
                
@@ -299,6 +302,7 @@ function photos_post(&$a) {
                                                                );
                                                        }
                                                        if(count($r)) {
+                                                               $newname = $r[0]['name'];
                                                                $profile = $r[0]['url'];
                                                                $notify = 'cid:' . $r[0]['id'];
                                                                if(strlen($inform))
@@ -307,7 +311,10 @@ function photos_post(&$a) {
                                                        }
                                                }
                                                if($profile) {
-                                                       $taginfo[] = array($newname,$profile,$notify);
+                                                       if(substr($notify,0,4) === 'cid:')
+                                                               $taginfo[] = array($newname,$profile,$notify,$r[0],'@[url=' . str_replace(',','%2c',$profile) . ']' . $newname  . '[/url]');
+                                                       else
+                                                               $taginfo[] = array($newname,$profile,$notify,null,$str_tags .= '@[url=' . $profile . ']' . $newname     . '[/url]');
                                                        if(strlen($str_tags))
                                                                $str_tags .= ',';
                                                        $profile = str_replace(',','%2c',$profile);
@@ -336,27 +343,70 @@ function photos_post(&$a) {
                                intval(local_user())
                        );
 
-                       if(count($taginfo)) {
-                               foreach($taginfo as $tagged) {
-//                                     $slap = create_photo_tag(local_user(),$item_id, $tagged);
-
-
-//                                     
+                       $best = 0;
+                       foreach($p as $scales) {
+                               if(intval($scales['scale']) == 2) {
+                                       $best = 2;
+                                       break;
+                               }
+                               if(intval($scales['scale']) == 4) {
+                                       $best = 4;
+                                       break;
                                }
-                               // call notifier on new tag activity
                        }
-                       
-//                             $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
-                               
-//                             $proc_debug = get_config('system','proc_debug');
-
-                               // send the notification upstream/downstream as the case may be
-
-//                             if($i[0]['visible'])
-//                                     proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"drop\" \"$drop_id\" $proc_debug & ",
-//                                             array(),$foo));
 
+                       if(count($taginfo)) {
+                               foreach($taginfo as $tagged) {
+               
+                                       $uri = item_new_uri($a->get_hostname(),local_user());
+
+                                       $arr = array();
+
+                                       $arr['uid']           = local_user();
+                                       $arr['uri']           = $uri;
+                                       $arr['parent-uri']    = $uri;
+                                       $arr['type']          = 'activity';
+                                       $arr['wall']          = 1;
+                                       $arr['contact-id']    = $contact_record['id'];
+                                       $arr['owner-name']    = $contact_record['name'];
+                                       $arr['owner-link']    = $contact_record['url'];
+                                       $arr['owner-avatar']  = $contact_record['thumb'];
+                                       $arr['author-name']   = $contact_record['name'];
+                                       $arr['author-link']   = $contact_record['url'];
+                                       $arr['author-avatar'] = $contact_record['thumb'];
+                                       $arr['title']         = '';
+                                       $arr['allow_cid']     = $p[0]['allow_cid'];
+                                       $arr['allow_gid']     = $p[0]['allow_gid'];
+                                       $arr['deny_cid']      = $p[0]['deny_cid'];
+                                       $arr['deny_gid']      = $p[0]['deny_gid'];
+                                       $arr['last-child']    = 1;
+                                       $arr['visible']       = 1;
+                                       $arr['verb']          = ACTIVITY_TAG;
+                                       $arr['object-type']   = ACTIVITY_OBJ_PERSON;
+                                       $arr['target-type']   = ACTIVITY_OBJ_PHOTO;
+                                       $arr['tag']           = $tagged[4];
+                                       $arr['inform']        = $tagged[2];
+
+                                       $arr['body']          = '[url=' . $tagged[1] . ']' . $tagged[0] . '[/url]' . ' ' . t('was tagged in a') . ' ' . '[url=' . $a->get_baseurl() . '/photos/' . $contact_record['nickname'] . '/image/' . $p[0]['resource-id'] . ']' . t('photo') . '[/url]' . ' ' . t('by') . ' ' . '[url=' . $contact_record['url'] . ']' . $contact_record['name'] . '[/url]' ;
+                                       $arr['body'] .= "\n\n" . '[url=' . $a->get_baseurl() . '/photos/' . $contact_record['nickname'] . '/image/' . $p[0]['resource-id'] . ']' . '[img]' . $a->get_baseurl() . "/photo/" . $p[0]['resource-id'] . '-' . $best . '.jpg' . '[/img][/url]' . "\n" ;
+
+                                       $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $tagged[0] . '</title><id>' . $tagged[1] . '/' . $tagged[0] . '</id>';
+                                       $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $tagged[1] . '" />' . "\n");
+                                       if($tagged[3])
+                                               $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $tagged[3]['photo'] . '" />' . "\n");
+                                       $arr['object'] .= '</link></object>' . "\n";
+
+                                       $arr['target'] = '<target><type>' . ACTIVITY_OBJ_PHOTO . '</type><title>' . $p[0]['desc'] . '</title><id>'
+                                               . $a->get_baseurl() . '/photos/' . $contact_record['nickname'] . '/image/' . $p[0]['resource-id'] . '</id>';
+                                       $arr['target'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $a->get_baseurl() . '/photos/' . $contact_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);
+                                       $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
+                                       proc_close(proc_open("\"$php_path\" \"include/notifier.php\" \"tag\" \"$item_id\" & ",
+                                               array(),$foo));
+                               }
 
+                       }
 
                }
                goaway($a->get_baseurl() . '/' . $_SESSION['photo_return']);
@@ -391,7 +441,7 @@ function photos_post(&$a) {
        if((! count($r)) || ($album == t('Profile Photos')))
                $visible = 1;
        else
-               $visibile = 0;
+               $visible = 0;
 
 
        $str_group_allow   = perms2str($_POST['group_allow']);
@@ -403,6 +453,14 @@ function photos_post(&$a) {
        $filename          = basename($_FILES['userfile']['name']);
        $filesize          = intval($_FILES['userfile']['size']);
 
+       $maximagesize = get_config('system','maximagesize');
+
+       if(($maximagesize) && ($filesize > $maximagesize)) {
+               notice( t('Image exceeds size limit of ') . $maximagesize . EOL);
+               @unlink($src);
+               return;
+       }
+
        $imagedata = @file_get_contents($src);
        $ph = new Photo($imagedata);
 
@@ -448,24 +506,27 @@ function photos_post(&$a) {
 
        $arr = array();
 
-       $arr['uid']          = local_user();
-       $arr['uri']          = $uri;
-       $arr['parent-uri']   = $uri;
-       $arr['type']         = 'photo';
-       $arr['wall']         = 1;
-       $arr['resource-id']  = $photo_hash;
-       $arr['contact-id']   = $contact_record['id'];
-       $arr['owner-name']   = $contact_record['name'];
-       $arr['owner-link']   = $contact_record['url'];
-       $arr['owner-avatar'] = $contact_record['thumb'];
-       $arr['title']        = $title;
-       $arr['allow_cid']    = $str_contact_allow;
-       $arr['allow_gid']    = $str_group_allow;
-       $arr['deny_cid']     = $str_contact_deny;
-       $arr['deny_gid']     = $str_group_deny;
-       $arr['last-child']   = 1;
-       $arr['visible']      = $visible;
-       $arr['body']         = '[url=' . $a->get_baseurl() . '/photos/' . $contact_record['nickname'] . '/image/' . $photo_hash . ']' 
+       $arr['uid']           = local_user();
+       $arr['uri']           = $uri;
+       $arr['parent-uri']    = $uri;
+       $arr['type']          = 'photo';
+       $arr['wall']          = 1;
+       $arr['resource-id']   = $photo_hash;
+       $arr['contact-id']    = $contact_record['id'];
+       $arr['owner-name']    = $contact_record['name'];
+       $arr['owner-link']    = $contact_record['url'];
+       $arr['owner-avatar']  = $contact_record['thumb'];
+       $arr['author-name']   = $contact_record['name'];
+       $arr['author-link']   = $contact_record['url'];
+       $arr['author-avatar'] = $contact_record['thumb'];
+       $arr['title']         = '';
+       $arr['allow_cid']     = $str_contact_allow;
+       $arr['allow_gid']     = $str_group_allow;
+       $arr['deny_cid']      = $str_contact_deny;
+       $arr['deny_gid']      = $str_group_deny;
+       $arr['last-child']    = 1;
+       $arr['visible']       = $visible;
+       $arr['body']          = '[url=' . $a->get_baseurl() . '/photos/' . $contact_record['nickname'] . '/image/' . $photo_hash . ']' 
                                . '[img]' . $a->get_baseurl() . "/photo/{$photo_hash}-{$smallest}.jpg" . '[/img]' 
                                . '[/url]';
 
@@ -637,7 +698,7 @@ function photos_content(&$a) {
                        $a->set_pager_total(count($r));
 
 
-               $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s' 
+               $r = q("SELECT `resource-id`, `id`, `filename`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` = '%s' 
                        $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
                        intval($a->data['user']['uid']),
                        dbesc($album),
@@ -736,20 +797,20 @@ function photos_content(&$a) {
 
                // Do we have an item for this photo?
 
-               $i1 = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1",
+               $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1",
                        dbesc($datum)
                );
-               if(count($i1)) {
-
+               if(count($linked_items)) {
+                       $link_item = $linked_items[0];
                        $r = q("SELECT COUNT(*) AS `total`
                                FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                                WHERE `parent-uri` = '%s' AND `uri` != '%s' AND `item`.`deleted` = 0
                                AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
                                AND `item`.`uid` = %d 
                                $sql_extra ",
-                               dbesc($i1[0]['uri']),
-                               dbesc($i1[0]['uri']),
-                               intval($i1[0]['uid'])
+                               dbesc($link_item['uri']),
+                               dbesc($link_item['uri']),
+                               intval($link_item['uid'])
 
                        );
 
@@ -767,19 +828,26 @@ function photos_content(&$a) {
                                AND `item`.`uid` = %d
                                $sql_extra
                                ORDER BY `parent` DESC, `id` ASC LIMIT %d ,%d ",
-                               dbesc($i1[0]['uri']),
-                               dbesc($i1[0]['uri']),
-                               intval($i1[0]['uid']),
+                               dbesc($link_item['uri']),
+                               dbesc($link_item['uri']),
+                               intval($link_item['uid']),
                                intval($a->pager['start']),
                                intval($a->pager['itemspage'])
 
                        );
+               
+                       if((local_user()) && (local_user() == $link_item['uid'])) {
+                               q("UPDATE `item` SET `unseen` = 0 WHERE `parent` = %d and `uid` = %d",
+                                       intval($link_item['parent']),
+                                       intval(local_user())
+                               );
+                       }
                }
 
                $o .= '<div id="photo-caption" >' . $ph[0]['desc'] . '</div>';
 
-               if(count($i1) && strlen($i1[0]['tag'])) {
-                       $arr = explode(',',$i1[0]['tag']);
+               if(count($linked_items) && strlen($link_item['tag'])) {
+                       $arr = explode(',',$link_item['tag']);
                        // parse tags and add links     
                        $o .= '<div id="in-this-photo-text">' . t('Tags: ') . '</div>';
                        $o .= '<div id="in-this-photo">';
@@ -790,8 +858,11 @@ function photos_content(&$a) {
                                $tag_str .= bbcode($t);
                        } 
                        $o .= $tag_str . '</div>';
+                       if($cmd === 'edit')
+                               $o .= '<div id="tag-remove"><a href="' . $a->get_baseurl() . '/tagrm/' . $link_item['id'] . '">' . t('[Remove any tag]') . '</a></div>';
                }
 
+
                if($cmd === 'edit') {
                        $edit_tpl = load_view_file('view/photo_edit.tpl');
                        $o .= replace_macros($edit_tpl, array(
@@ -800,16 +871,16 @@ function photos_content(&$a) {
                                '$capt_label' => t('Caption'),
                                '$caption' => $ph[0]['desc'],
                                '$tag_label' => t('Add a Tag'),
-                               '$tags' => $i1[0]['tag'],
+                               '$tags' => $link_item['tag'],
                                '$help_tags' => t('Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping'),
-                               '$item_id' => ((count($i1)) ? $i1[0]['id'] : 0),
+                               '$item_id' => ((count($linked_items)) ? $link_item['id'] : 0),
                                '$submit' => t('Submit'),
                                '$delete' => t('Delete Photo')
 
                        ));
                }
 
-               if(count($i1)) {
+               if(count($linked_items)) {
 
                        $cmnt_tpl = load_view_file('view/comment_item.tpl');
                        $tpl = load_view_file('view/photo_item.tpl');
@@ -817,19 +888,30 @@ function photos_content(&$a) {
 
                        $like_tpl = load_view_file('view/like.tpl');
 
-                       if(can_write_wall($a,$a->data['user']['uid'])) {
-                               if($i1[0]['last-child']) {
-                                       $o .= replace_macros($cmnt_tpl,array(
-                                               '$return_path' => $return_url,
-                                               '$type' => 'wall-comment',
-                                               '$id' => $i1[0]['id'],
-                                               '$parent' => $i1[0]['id'],
-                                               '$profile_uid' =>  $a->data['user']['uid'],
-                                               '$mylink' => $contact['url'],
-                                               '$mytitle' => t('This is you'),
-                                               '$myphoto' => $contact['thumb'],
-                                               '$ww' => ''
-                                       ));
+                       $likebuttons = '';
+
+                       if(can_write_wall($a,$a->data['user']['uid']))
+                               $likebuttons = replace_macros($like_tpl,array('$id' => $link_item['id']));
+
+                       if(! count($r)) {
+                               $o .= '<div id="photo-like-div">';
+                               $o .= $likebuttons;
+                               $o .= '</div>';
+
+                               if(can_write_wall($a,$a->data['user']['uid'])) {
+                                       if($link_item['last-child']) {
+                                               $o .= replace_macros($cmnt_tpl,array(
+                                                       '$return_path' => $return_url,
+                                                       '$type' => 'wall-comment',
+                                                       '$id' => $link_item['id'],
+                                                       '$parent' => $link_item['id'],
+                                                       '$profile_uid' =>  $a->data['user']['uid'],
+                                                       '$mylink' => $contact['url'],
+                                                       '$mytitle' => t('This is you'),
+                                                       '$myphoto' => $contact['thumb'],
+                                                       '$ww' => ''
+                                               ));
+                                       }
                                }
                        }
 
@@ -844,13 +926,8 @@ function photos_content(&$a) {
                                        like_puller($a,$item,$dlike,'dislike');
                                }
 
-                               $likebuttons = '';
-
-                               if(can_write_wall($a,$a->data['user']['uid']))
-                                       $likebuttons = replace_macros($like_tpl,array('$id' => $i1[0]['id']));
-
-                   $like    = ((isset($alike[$i1[0]['id']])) ? format_like($alike[$i1[0]['id']],$alike[$i1[0]['id'] . '-l'],'like',$i1[0]['id']) : '');
-                               $dislike = ((isset($dlike[$i1[0]['id']])) ? format_like($dlike[$i1[0]['id']],$dlike[$i1[0]['id'] . '-l'],'dislike',$i1[0]['id']) : '');
+                   $like    = ((isset($alike[$link_item['id']])) ? format_like($alike[$link_item['id']],$alike[$link_item['id'] . '-l'],'like',$link_item['id']) : '');
+                               $dislike = ((isset($dlike[$link_item['id']])) ? format_like($dlike[$link_item['id']],$dlike[$link_item['id'] . '-l'],'dislike',$link_item['id']) : '');
 
                                $o .= '<div id="photo-like-div">';
                                $o .= $likebuttons;
@@ -859,6 +936,24 @@ function photos_content(&$a) {
                                $o .= '</div>';
 
 
+
+                               if(can_write_wall($a,$a->data['user']['uid'])) {
+                                       if($link_item['last-child']) {
+                                               $o .= replace_macros($cmnt_tpl,array(
+                                                       '$return_path' => $return_url,
+                                                       '$type' => 'wall-comment',
+                                                       '$id' => $link_item['id'],
+                                                       '$parent' => $link_item['id'],
+                                                       '$profile_uid' =>  $a->data['user']['uid'],
+                                                       '$mylink' => $contact['url'],
+                                                       '$mytitle' => t('This is you'),
+                                                       '$myphoto' => $contact['thumb'],
+                                                       '$ww' => ''
+                                               ));
+                                       }
+                               }
+
+
                                foreach($r as $item) {
                                        $comment = '';
                                        $template = $tpl;
@@ -903,7 +998,7 @@ function photos_content(&$a) {
 
                                        $drop = '';
 
-                                       if(($item['contact-id'] == $_SESSION['visitor_id']) || ($item['uid'] == local_user()))
+                                       if(($item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
                                                $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id']));
 
 
@@ -929,6 +1024,7 @@ function photos_content(&$a) {
        }
 
        // Default - show recent photos with upload link (if applicable)
+       $o = '';
 
        $r = q("SELECT `resource-id`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' 
                $sql_extra GROUP BY `resource-id`",
@@ -939,7 +1035,8 @@ function photos_content(&$a) {
                $a->set_pager_total(count($r));
 
 
-       $r = q("SELECT `resource-id`, `album`, max(`scale`) AS `scale` FROM `photo` WHERE `uid` = %d AND `album` != '%s' 
+       $r = q("SELECT `resource-id`, `id`, `filename`, `album`, max(`scale`) AS `scale` FROM `photo`
+               WHERE `uid` = %d AND `album` != '%s' 
                $sql_extra GROUP BY `resource-id` ORDER BY `created` DESC LIMIT %d , %d",
                intval($a->data['user']['uid']),
                dbesc( t('Contact Photos')),
@@ -963,8 +1060,8 @@ function photos_content(&$a) {
                                        . '/image/' . $rr['resource-id'],
                                '$phototitle' => t('View Photo'),
                                '$imgsrc' => $a->get_baseurl() . '/photo/' 
-                                       . $rr['resource-id'] . '-' . $rr['scale'] . '.jpg',
-                               '$albumlink' => $a->get_baseurl . '/photos/' 
+                                       . $rr['resource-id'] . '-' . ((($rr['scale']) == 6) ? 4 : $rr['scale']) . '.jpg',
+                               '$albumlink' => $a->get_baseurl() . '/photos/' 
                                        . $a->data['user']['nickname'] . '/album/' . bin2hex($rr['album']),
                                '$albumname' => $rr['album'],
                                '$albumalt' => t('View Album'),