From: Joe Hunt Date: Thu, 5 Nov 2015 19:53:16 +0000 (+0100) Subject: Faulty escape in empty.po. Source to problem. X-Git-Tag: v2.4.2~19^2~136 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=28a39cec8a39dfd2e168b4b95f6f4cb006427a57;p=fa-stable.git Faulty escape in empty.po. Source to problem. --- diff --git a/includes/ui/ui_controls.inc b/includes/ui/ui_controls.inc index 4b6d11cd..b3107a1d 100644 --- a/includes/ui/ui_controls.inc +++ b/includes/ui/ui_controls.inc @@ -670,7 +670,7 @@ function page_processing($msg = false) global $Ajax; if ($msg === true) - $msg = _('Entered data has not been saved yet.\nDo you want to abandon changes?'); + $msg = _("Entered data has not been saved yet.\nDo you want to abandon changes?"); $js = "_validate._processing=" . ( $msg ? '\''.strtr($msg, array("\n"=>'\\n')) . '\';' : 'null;');