2010-08-10 Sergio Martin <sergio.martin@artica.es>

* include/functions_alerts.php: Fixed a typo bug for show
	the message of succefully copied when you clone an alert action



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3116 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-08-10 10:25:13 +00:00
parent 7efca19db6
commit 5b673b02ec
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-08-10 Sergio Martin <sergio.martin@artica.es>
* include/functions_alerts.php: Fixed a typo bug for show
the message of succefully copied when you clone an alert action
2010-08-10 Ramon Novoa <rnovoa@artica.es> 2010-08-10 Ramon Novoa <rnovoa@artica.es>
* include/auth/mysql.php, * include/auth/mysql.php,

View File

@ -150,7 +150,8 @@ function clone_alert_action ($id_alert_action) {
return false; return false;
unset($action['id']); unset($action['id']);
$result = create_alert_action ($action['name']." ".__('copy'), $action['id_alert_command'], $action); return create_alert_action ($action['name']." ".__('copy'), $action['id_alert_command'], $action);
} }
function get_alert_actions ($only_names = true) { function get_alert_actions ($only_names = true) {