Annotation of embedaddon/php/ext/session/tests/018.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: rewriter correctly handles attribute names which contain dashes
        !             3: --SKIPIF--
        !             4: <?php include('skipif.inc'); ?>
        !             5: --INI--
        !             6: session.use_cookies=0
        !             7: session.use_only_cookies=0
        !             8: session.cache_limiter=
        !             9: session.use_trans_sid=1
        !            10: session.name=PHPSESSID
        !            11: session.serialize_handler=php
        !            12: session.save_handler=files
        !            13: --FILE--
        !            14: <?php
        !            15: 
        !            16: error_reporting(E_ALL);
        !            17: 
        !            18: session_id("abtest");
        !            19: session_start();
        !            20: ?>
        !            21: <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php>
        !            22: <?php
        !            23: session_destroy();
        !            24: ?>
        !            25: --EXPECT--
        !            26: <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID" value="abtest" />

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>