From e614ac10346571239ea0f96881bde78d52ac3044 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 18 Dec 2006 21:32:10 +0000 Subject: [PATCH] - Patch #103811 by kkaefer: replace %url with @url. --- modules/system/system.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/system.install b/modules/system/system.install index e93a5fb10b1..e2a6a2918ac 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2790,7 +2790,7 @@ function system_update_177() { // Deleting is required, because _user_mail_text() checks for the existance of the variable. variable_del('user_mail_'. $message_id); $ret[] = array( - 'query' => strtr('The mail template %message_id has been reset to the default. The old template has been saved.', array('%message_id' => 'user_mail_'. $message_id, '%url' => url('admin/logs/event/'. $last->wid))), + 'query' => strtr('The mail template %message_id has been reset to the default. The old template has been saved.', array('%message_id' => 'user_mail_'. $message_id, '@url' => url('admin/logs/event/'. $last->wid))), 'success' => TRUE ); }