diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 17:12:03 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 17:12:03 +0100 |
commit | 9d913150d4c3b967207837eb07afe890638944ac (patch) | |
tree | cdb06b9a9767f00a75d4e7837fce59b1c3cabd7c | |
parent | 30dac77caa4a42fbfbf1dedcf34f80d59ed500b8 (diff) |
use profile attr in GalleryAction
-rw-r--r-- | lib/galleryaction.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/galleryaction.php b/lib/galleryaction.php index b36f1ea34..a277762a6 100644 --- a/lib/galleryaction.php +++ b/lib/galleryaction.php @@ -149,8 +149,8 @@ class GalleryAction extends Action $profile_tag = new Notice_tag(); $profile_tag->query('SELECT DISTINCT(tag) ' . 'FROM profile_tag, subscription ' . - 'WHERE tagger = ' . $profile->id . ' ' . - 'AND ' . $usr . ' = ' . $profile->id . ' ' . + 'WHERE tagger = ' . $this->profile->id . ' ' . + 'AND ' . $usr . ' = ' . $this->profile->id . ' ' . 'AND ' . $lst . ' = tagged ' . 'AND tagger != tagged'); $tags = array(); |