From ea27482987c7a5e2ccca59dfe6b295e180b077a6 Mon Sep 17 00:00:00 2001 From: rub Date: Sat, 17 Mar 2007 11:20:57 +0000 Subject: Fix problem when admin send email information about category. git-svn-id: http://piwigo.org/svn/trunk@1917 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions_mail.inc.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/functions_mail.inc.php b/include/functions_mail.inc.php index 92d5ead6a..5f10d2f0a 100644 --- a/include/functions_mail.inc.php +++ b/include/functions_mail.inc.php @@ -369,7 +369,8 @@ WHERE $list = array(); while ($row = mysql_fetch_array($result)) { - list($row['template'], $row['theme']) = explode('/', $row['template']); + $row['template_theme'] = $row['template']; + list($row['template'], $row['theme']) = explode('/', $row['template_theme']); $list[] = $row; } } @@ -387,7 +388,8 @@ FROM WHERE '.$conf['user_fields']['email'].' IS NOT NULL AND group_id = '.$group_id.' - AND language = \''.$elem['language'].'\' + AND language = \''.$elem['language'].'\' + AND template = \''.$elem['template_theme'].'\' ;'; $result = pwg_query($query); -- cgit v1.2.3