[PHP-DEV] Bug #10833: Hyperlink tag <a> when split on multiple lines, session ids are not propagated From: admin <email protected>
Date: 05/12/01

From: admin <email protected>
Operating system: Linux
PHP version: 4.0.5
PHP Bug Type: *Session related
Bug description: Hyperlink tag &lt;a&gt; when split on multiple lines, session ids are not propagated

This applicable for browsers that don't allow cookies:

The following is not working:
<a class="subMenu"
        href="<?php if (!isset($currentMenu))
                        echo $smUrlRefs[$key];
                else echo "../" . $smUrlRefs[$key]; ?>">
                Menu </a>

But if href is on the same line as <a> tag, it works:
<a class="subMenu" href="<?php if (!isset($currentMenu)) echo
$smUrlRefs[$key];
                else echo "../" . $smUrlRefs[$key]; ?>">
                Menu </a>

-- 
Edit Bug report at: http://bugs.php.net/?id=10833&edit=1

-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>