diff options
author | rub <rub@piwigo.org> | 2007-10-16 21:18:11 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-10-16 21:18:11 +0000 |
commit | c1cd43c87415a1a268bf649d7b79ae330624f9db (patch) | |
tree | c49672f88480149b202e166935efc39fa2fa2dea /admin/cat_modify.php | |
parent | b606b6d1ab4a484fae1922a574540c4bf6753be2 (diff) |
Resolved issue 0000763: mail triggers:
Add triggers on mail part:
o NBM
o Group mail
o process send mail
+ check group_id null on group mail
Merge branch-1_7 2138:2139 into BSF
git-svn-id: http://piwigo.org/svn/trunk@2140 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/cat_modify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/cat_modify.php b/admin/cat_modify.php index fd6588c97..63da625c5 100644 --- a/admin/cat_modify.php +++ b/admin/cat_modify.php @@ -529,7 +529,7 @@ display_select_cat_wrapper( ); // info by email to an access granted group of category informations -if (isset($_POST['submitEmail'])) +if (isset($_POST['submitEmail']) and !empty($_POST['group'])) { set_make_full_url(); @@ -640,7 +640,7 @@ SELECT while ($row = mysql_fetch_array($result)) { $template->assign_block_vars( - 'group_option', + 'group_mail.group_option', array( 'VALUE' => $row['id'], 'OPTION' => $row['name'], |