/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/session/tests/bug36459.phpt
47 строк
1 KB
Kamil Tekiela
Deprecate disabling use_only_cookies (#13578)
24 авг 2024, 17:33
Не верифицирован
24 авг 2024, 17:33
c5bce0d
Код
Авторство
О чём код?
--TEST-- Bug #31454 (Incorrect adding PHPSESSID to links, which contains \r\n) --EXTENSIONS-- session --SKIPIF-- <?php include('skipif.inc'); ?> --INI-- session.use_trans_sid=1 session.use_cookies=0 session.use_only_cookies=0 session.name=sid --FILE-- <?php error_reporting(E_ALL); session_start(); # Do not remove \r from this tests, they are essential! ?> <html> <head> <title>Bug #36459 Incorrect adding PHPSESSID to links, which contains \r\n</title> </head> <body> <p>See source html code</p> <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2" style="font: normal 11pt Times New Roman">incorrect link</a><br /> <br /> <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2" style="font: normal 11pt Times New Roman">correct link</a> </body> </html> --EXPECTF-- Deprecated: PHP Startup: Disabling session.use_only_cookies INI setting is deprecated in Unknown on line 0 Deprecated: PHP Startup: Enabling session.use_trans_sid INI setting is deprecated in Unknown on line 0 <html> <head> <title>Bug #36459 Incorrect adding PHPSESSID to links, which contains \r\n</title> </head> <body> <p>See source html code</p> <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2&sid=%s" style="font: normal 11pt Times New Roman">incorrect link</a><br /> <br /> <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2&sid=%s" style="font: normal 11pt Times New Roman">correct link</a> </body> </html>