diff options
| author | Chad Kieffer <ckieffer@gmail.com> | 2009-06-24 23:40:57 -0600 |
|---|---|---|
| committer | Chad Kieffer <ckieffer@gmail.com> | 2009-06-24 23:40:57 -0600 |
| commit | f70517a8e88b280c2b380f2bde7ff9d85146506f (patch) | |
| tree | a8e86434282eab242009e9cda145c5b5764a39d5 /modules/gallery/helpers/MY_url.php | |
| parent | 043469587ed03a2a4e05aa2fddcebe53f04b0ce4 (diff) | |
| parent | 766de009090cd1a49b6726e79bce7a69392491be (diff) | |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/helpers/MY_url.php')
| -rw-r--r-- | modules/gallery/helpers/MY_url.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/MY_url.php b/modules/gallery/helpers/MY_url.php index 7bee70ca..c4967c52 100644 --- a/modules/gallery/helpers/MY_url.php +++ b/modules/gallery/helpers/MY_url.php @@ -58,7 +58,7 @@ class url extends url_Core { * Return the item that the uri is referencing */ static function get_item_from_uri($uri) { - $current_uri = html_entity_decode($uri); + $current_uri = html_entity_decode($uri, ENT_QUOTES); $item = ORM::factory("item")->where("relative_path_cache", $current_uri)->find(); if (!$item->loaded) { // It's possible that the relative path cache for the item we're looking for is out of date, |
