- Patch #103811 by kkaefer: replace %url with @url.

5.x
Dries Buytaert 2006-12-18 21:32:10 +00:00
parent e0570581ab
commit e614ac1034
1 changed files with 1 additions and 1 deletions

View File

@ -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 <a href="%url">has been saved</a>.', 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 <a href="@url">has been saved</a>.', array('%message_id' => 'user_mail_'. $message_id, '@url' => url('admin/logs/event/'. $last->wid))),
'success' => TRUE
);
}