diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-10-01 10:17:13 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-10-01 10:17:13 -0300 |
commit | addc0439931fb28c626c7024b1e9857adfe29f29 (patch) | |
tree | f6774da34d43b238c3a14a3a43a5b71da0a2f249 /etc/inc/xmlrpc_client.inc | |
parent | 788c1288bae791ac0b3f2a19eb8c6aac8d7a7c22 (diff) | |
download | pfsense-addc0439931fb28c626c7024b1e9857adfe29f29.zip pfsense-addc0439931fb28c626c7024b1e9857adfe29f29.tar.gz |
Fix quotes to use %N$X on gettext calls
Diffstat (limited to 'etc/inc/xmlrpc_client.inc')
-rw-r--r-- | etc/inc/xmlrpc_client.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/xmlrpc_client.inc b/etc/inc/xmlrpc_client.inc index bd0f1bd..5a9f559 100644 --- a/etc/inc/xmlrpc_client.inc +++ b/etc/inc/xmlrpc_client.inc @@ -303,7 +303,7 @@ function XML_RPC_se($parser_resource, $name, $attrs) if (!in_array($XML_RPC_xh[$parser]['stack'][0], $XML_RPC_valid_parents[$name])) { $name = $GLOBALS['XML_RPC_func_ereg_replace']('[^a-zA-Z0-9._-]', '', $name); $XML_RPC_xh[$parser]['isf'] = 2; - $XML_RPC_xh[$parser]['isf_reason'] = sprintf(gettext("xmlrpc element %1$s cannot be child of %2$s"), $name, $XML_RPC_xh[$parser]['stack'][0]); + $XML_RPC_xh[$parser]['isf_reason'] = sprintf(gettext('xmlrpc element %1$s cannot be child of %2$s'), $name, $XML_RPC_xh[$parser]['stack'][0]); return; } } |