diff options
author | VirtualTam <virtualtam+github@flibidi.net> | 2016-10-20 20:41:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 20:41:24 +0200 |
commit | fb6c8f770a07e38d5250ca4d6717445002e7bfb3 (patch) | |
tree | 499d26ccee0d0df3aeac5fe9d27faf2800721698 /application/Utils.php | |
parent | ceeb8fbeb89f69e41791ae192d073d6afea00f4b (diff) | |
parent | 7af9a41881ed0b9d44d18a0ce03a123a8441adf5 (diff) | |
download | Shaarli-fb6c8f770a07e38d5250ca4d6717445002e7bfb3.tar.gz Shaarli-fb6c8f770a07e38d5250ca4d6717445002e7bfb3.tar.zst Shaarli-fb6c8f770a07e38d5250ca4d6717445002e7bfb3.zip |
Merge pull request #671 from ArthurHoaro/cleanup-code
Minor code cleanup: PHPDoc, spelling, unused variables, etc.
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 | { |