From: Kalle Sommer Nielsen Date: Thu, 28 May 2009 20:46:05 +0000 (+0000) Subject: % shouldn't be escaped here X-Git-Tag: php-5.4.0alpha1~191^2~3471 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f490cdfae3fd1e20a6a18bc973e342d86baefe64;p=php % shouldn't be escaped here --- diff --git a/ext/standard/scanf.c b/ext/standard/scanf.c index b2ff8ea5e9..bc4a1a6f69 100644 --- a/ext/standard/scanf.c +++ b/ext/standard/scanf.c @@ -850,7 +850,7 @@ notXpg: gotSequential = 1; if (gotXpg) { mixedXPG: - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", "cannot mix \"\%\" and \"\%n$\" conversion specifiers"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", "cannot mix \"%\" and \"%n$\" conversion specifiers"); goto error; }