From 45a7eb024824d283a24ae36aa3e5e56c9648fbf4 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 2 Nov 2009 10:02:34 -0800 Subject: Remove an extra trailing bracket. --- modules/comment/views/comments.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/comment/views/comments.html.php b/modules/comment/views/comments.html.php index 636f1522..fc54e3d2 100644 --- a/modules/comment/views/comments.html.php +++ b/modules/comment/views/comments.html.php @@ -1,5 +1,5 @@ - id})") ?>" id="g-admin-comment-button" + id}") ?>" id="g-admin-comment-button" class="g-button ui-corner-all ui-icon-left ui-state-default right"> -- cgit v1.2.3 From 9a329f23ed68319c5c603b1b0aaa97687a3eaf7d Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 2 Nov 2009 12:43:04 -0800 Subject: remove a debugging statement --- modules/gallery/helpers/block_manager.php | 1 - 1 file changed, 1 deletion(-) (limited to 'modules') diff --git a/modules/gallery/helpers/block_manager.php b/modules/gallery/helpers/block_manager.php index f26c3660..0e78661a 100644 --- a/modules/gallery/helpers/block_manager.php +++ b/modules/gallery/helpers/block_manager.php @@ -36,7 +36,6 @@ class block_manager_Core { $block_class = "{$module_name}_block"; if (method_exists($block_class, "get_site_list")) { $blocks = call_user_func(array($block_class, "get_site_list")); - Kohana::log("error", Kohana::debug($blocks)); foreach (array_keys($blocks) as $block_id) { self::add("site.sidebar", $module_name, $block_id); } -- cgit v1.2.3 From 192b11724ef315ebaabb3088a0daba1450fd7df0 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Mon, 2 Nov 2009 13:45:40 -0800 Subject: Add a recaptcha_theme file so we can actually include the recaptcha.css file so the recaptcha doesn't looking... interesting. --- modules/recaptcha/helpers/recaptcha_theme.php | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 modules/recaptcha/helpers/recaptcha_theme.php (limited to 'modules') diff --git a/modules/recaptcha/helpers/recaptcha_theme.php b/modules/recaptcha/helpers/recaptcha_theme.php new file mode 100644 index 00000000..fd1f563c --- /dev/null +++ b/modules/recaptcha/helpers/recaptcha_theme.php @@ -0,0 +1,28 @@ +css("recaptcha.css"); + } + + static function admin_head($theme) { + $theme->css("recaptcha.css"); + } +} \ No newline at end of file -- cgit v1.2.3