Skip to content

Commit

Permalink
Add W3C reference for URL argument separators
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Nov 15, 2012
1 parent 62d38e2 commit ccb21c0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libraries/url_generating.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ function PMA_get_arg_separator($encode = 'none')
if (null === $separator) {
// use seperators defined by php, but prefer ';'
// as recommended by W3C
// (see http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.2.2)
$php_arg_separator_input = ini_get('arg_separator.input');
if (strpos($php_arg_separator_input, ';') !== false) {
$separator = ';';
Expand Down

0 comments on commit ccb21c0

Please sign in to comment.