diff options
Diffstat (limited to 'application/LinkDB.php')
-rw-r--r-- | application/LinkDB.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/LinkDB.php b/application/LinkDB.php index 47dbcaf3..2b3fb60b 100644 --- a/application/LinkDB.php +++ b/application/LinkDB.php | |||
@@ -249,6 +249,11 @@ class LinkDB implements Iterator, Countable, ArrayAccess | |||
249 | foreach ($this->links as $link) { | 249 | foreach ($this->links as $link) { |
250 | $this->urls[$link['url']] = $link['linkdate']; | 250 | $this->urls[$link['url']] = $link['linkdate']; |
251 | } | 251 | } |
252 | |||
253 | // Escape links data | ||
254 | foreach($this->links as &$link) { | ||
255 | sanitizeLink($link); | ||
256 | } | ||
252 | } | 257 | } |
253 | 258 | ||
254 | /** | 259 | /** |