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