View Issue Details

IDProjectCategoryView StatusLast Update
0000684XdebugUncategorizedpublic2014-02-27 19:12
Reporterrovangju Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionnot fixable 
PlatformAllOSAllOS VersionAll
Product Version2.1.0 
Summary0000684: var_dump - IE does not support '
Description

Code utilizes ' instead of ' - which IE does not even acknowledge exists.

Steps To Reproduce

<?
var_dump('Testing isn\'t fun');
// Output is proper in FF/Chrome, as expected: Testing isn't fun
// Output in IE: Testing isn't fun
?>

Additional Information

See diff for details - essentially replace ' in php_str_to_str() call in xdebug_var.c with ' - Confirmed working after patch.

TagsNo tags attached.
Operating System
PHP Version5.3.6

Activities

rovangju

2011-04-25 21:15

reporter   ~0001726

Last edited: 2011-04-25 21:16

ok wow... let's try that again:

IE doesn't support &apos; -

Patching file to use &(#)39; instead of &apos; resolves.

derick

2014-02-27 19:12

administrator   ~0002688

I am not going to add workarounds for weird bugs in IE. ' should work perfectly everywhere.