Edit report at http://bugs.php.net/bug.php?id=53684&edit=1
ID: 53684 Updated by: ahar...@php.net Reported by: gengel at sonoma dot lib dot ca dot us Summary: Deprecated HTML in sample php.ini -Status: Open +Status: Assigned Type: Feature/Change Request Package: PHP options/info functions PHP Version: Irrelevant -Assigned To: +Assigned To: aharvey Block user comment: N Private report: N Previous Comments: ------------------------------------------------------------------------ [2011-01-07 03:18:54] gengel at sonoma dot lib dot ca dot us Description: ------------ The error_prepend_string and error_append_string settings in the php.ini sample file contain font tags. Font is deprecated since 1999 (http://www.w3.org/TR/1999/REC-html401-19991224/present/graphics.html#edef-FONT) and should be replaced with span. The "Expected result" shows this section of php.ini with the suggested change, and the "Actual result" shows the same section of php.ini as it is currently shipping. Expected result: ---------------- ; String to output before an error message. PHP's default behavior is to leave ; this setting blank. ; http://php.net/error-prepend-string ; Example: ;error_prepend_string = '<span style="color:#ff0000">' ; String to output after an error message. PHP's default behavior is to leave ; this setting blank. ; http://php.net/error-append-string ; Example: ;error_append_string = '</span>' Actual result: -------------- ; String to output before an error message. PHP's default behavior is to leave ; this setting blank. ; http://php.net/error-prepend-string ; Example: ;error_prepend_string = "<font color=#ff0000>" ; String to output after an error message. PHP's default behavior is to leave ; this setting blank. ; http://php.net/error-append-string ; Example: ;error_append_string = "</font>" ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=53684&edit=1