diff options
Diffstat (limited to 'application/Utils.php')
-rw-r--r-- | application/Utils.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/application/Utils.php b/application/Utils.php index 7d7eaffd..0166ee2a 100644 --- a/application/Utils.php +++ b/application/Utils.php | |||
@@ -32,6 +32,10 @@ function logm($logFile, $clientIp, $message) | |||
32 | * | 32 | * |
33 | * In Shaarli, they are used as a tinyurl-like link to individual entries, | 33 | * In Shaarli, they are used as a tinyurl-like link to individual entries, |
34 | * e.g. smallHash('20111006_131924') --> yZH23w | 34 | * e.g. smallHash('20111006_131924') --> yZH23w |
35 | * | ||
36 | * @param string $text Create a hash from this text. | ||
37 | * | ||
38 | * @return string generated small hash. | ||
35 | */ | 39 | */ |
36 | function smallHash($text) | 40 | function smallHash($text) |
37 | { | 41 | { |
@@ -106,7 +110,9 @@ function unescape($str) | |||
106 | } | 110 | } |
107 | 111 | ||
108 | /** | 112 | /** |
109 | * Link sanitization before templating | 113 | * Sanitize link before rendering. |
114 | * | ||
115 | * @param array $link Link to escape. | ||
110 | */ | 116 | */ |
111 | function sanitizeLink(&$link) | 117 | function sanitizeLink(&$link) |
112 | { | 118 | { |