diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-08 11:06:54 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-08 11:06:54 -0800 |
commit | 46e33f1bbe6f8526470e041658a30df6e9e6c84a (patch) | |
tree | 46ec10120c58c45539f2cf5ed47e24d5901eb66c /modules/slideshow/helpers | |
parent | 58620c5faa777019222f7dd9853b2848f46db2a6 (diff) |
Fix for ticket #933. Move the inclusion of the piclens script from the theme::header callback to the theme::page_bottom callback.
Diffstat (limited to 'modules/slideshow/helpers')
-rw-r--r-- | modules/slideshow/helpers/slideshow_theme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/slideshow/helpers/slideshow_theme.php b/modules/slideshow/helpers/slideshow_theme.php index 163d2bd8..6aaf371c 100644 --- a/modules/slideshow/helpers/slideshow_theme.php +++ b/modules/slideshow/helpers/slideshow_theme.php @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ class slideshow_theme_Core { - static function head($theme) { + static function page_bottom($theme) { $proto = (empty($_SERVER["HTTPS"]) || $_SERVER["HTTPS"] === "off") ? "http" : "https"; return "<script src=\"$proto://apps.cooliris.com/slideshow/go.js\" " . "type=\"text/javascript\"></script>"; |