mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-10-31 21:33:00 +00:00
Document makepathsafe() better
This commit is contained in:
parent
4bf7881e5c
commit
7507867ca7
1 changed files with 6 additions and 3 deletions
9
core.php
9
core.php
|
@ -333,9 +333,12 @@ function check_subpage_parents($pagename)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Makes a path safe.
|
* Makes a path (or page name) safe.
|
||||||
* Paths may only contain alphanumeric characters, spaces, underscores, and
|
* A safe path / page name may not contain:
|
||||||
* dashes.
|
* Forward-slashes at the beginning
|
||||||
|
* Multiple dots in a row
|
||||||
|
* Odd characters (e.g. ?%*:|"<>() etc.)
|
||||||
|
* A safe path may, however, contain unicode characters such as éôà etc.
|
||||||
* @package core
|
* @package core
|
||||||
* @param string $string The string to make safe.
|
* @param string $string The string to make safe.
|
||||||
* @return string A safe version of the given string.
|
* @return string A safe version of the given string.
|
||||||
|
|
Loading…
Reference in a new issue