xref: /PHP-7.4/ext/session/tests/bug36459.phpt (revision 3f72c77c)
1--TEST--
2Bug #31454 (Incorrect adding PHPSESSID to links, which contains \r\n)
3--SKIPIF--
4<?php include('skipif.inc'); ?>
5--INI--
6session.use_trans_sid=1
7session.use_cookies=0
8session.use_only_cookies=0
9session.name=sid
10--FILE--
11<?php
12error_reporting(E_ALL);
13
14session_start();
15
16# Do not remove \r from this tests, they are essential!
17?>
18<html>
19  <head>
20    <title>Bug #36459 Incorrect adding PHPSESSID to links, which contains \r\n</title>
21  </head>
22  <body>
23    <p>See source html code</p>
24    <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2"
25       style="font: normal 11pt Times New Roman">incorrect link</a><br />
26    <br />
27    <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2" style="font: normal 11pt Times New Roman">correct link</a>
28  </body>
29</html>
30--EXPECTF--
31<html>
32  <head>
33    <title>Bug #36459 Incorrect adding PHPSESSID to links, which contains \r\n</title>
34  </head>
35  <body>
36    <p>See source html code</p>
37    <a href="/b2w/www/ru/adm/pages/?action=prev&rec_id=8&pid=2&sid=%s"
38       style="font: normal 11pt Times New Roman">incorrect link</a><br />
39    <br />
40    <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>
41  </body>
42</html>
43