diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-12-06 01:07:03 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-12-06 01:07:03 +0000 |
commit | f880be0609a63046c2f8fe961467f97a8a943f10 (patch) | |
tree | 55f8c759e903e37d37bd9bacf69f9c1e9002cdf4 /notification.php | |
parent | af138fa6311ac686ec7f256788eb2a07784ac215 (diff) |
feature 583: notification infromation can be filtered by the requester
(optionnally no comments/new users...)
small lang correction in header.tpl
git-svn-id: http://piwigo.org/svn/trunk@1636 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'notification.php')
-rw-r--r-- | notification.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/notification.php b/notification.php index ea6381ebf..177ddb654 100644 --- a/notification.php +++ b/notification.php @@ -52,6 +52,8 @@ INSERT INTO '.USER_FEED_TABLE.' pwg_query($query); $feed_url=PHPWG_ROOT_PATH.'feed.php?feed='.$page['feed']; +$feed_image_only_url=$feed_url.'&image_only'; + // +-----------------------------------------------------------------------+ // | template initialization | // +-----------------------------------------------------------------------+ @@ -74,7 +76,8 @@ $template->set_filenames(array('notification'=>'notification.tpl')); $template->assign_vars( array( - 'FEED_URL' => $feed_url, + 'U_FEED' => $feed_url, + 'U_FEED_IMAGE_ONLY' => $feed_image_only_url, 'U_HOME' => make_index_url(), ) ); |