ID: 35680
User updated by: cristiklein at net dot utcluj dot ro
Reported By: cristiklein at net dot utcluj dot ro
Status: Bogus
Bug Type: Scripting Engine problem
Operating System: FreeBSD 5.4
PHP Version: 5.1.1
New Comment:
I have read that bug, but I don't consider it to be correct.
Due to this "transformation", applications like squirrelmail stopped
working. This is why I considered submitting this bug is vital.
Previous Comments:
------------------------------------------------------------------------
[2005-12-15 14:21:45] [EMAIL PROTECTED]
See bug #31341.
------------------------------------------------------------------------
[2005-12-15 14:18:47] cristiklein at net dot utcluj dot ro
Description:
------------
I recently noticed that "\{$var}" retains the backslash. Older versions
of php don't do so, because backslash is meant to escape the curly.
Reproduce code:
---------------
<?php
$length = 100;
$sent_folder = "INBOX.Sent";
echo "APPEND \"$sent_folder\" (\\Seen) \{$length}\r\n";
?>
Expected result:
----------------
APPEND "INBOX.Sent" (\Seen) {100}
Actual result:
--------------
APPEND "INBOX.Sent" (\Seen) \{100}
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=35680&edit=1