summaryrefslogtreecommitdiff
path: root/modules/color
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
commit1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 (patch)
treed77a0c5420a53c65d24b8ac1842b7f1e356c39d3 /modules/color
parent8523aca33e828c638f2373e5be4e80ed30866a58 (diff)
downloadbrdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.gz
brdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.bz2
- Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards.
Diffstat (limited to 'modules/color')
-rw-r--r--modules/color/color.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/color/color.module b/modules/color/color.module
index 8c22918c7..740b07cd0 100644
--- a/modules/color/color.module
+++ b/modules/color/color.module
@@ -2,7 +2,7 @@
// $Id$
/**
- * Implement hook_help().
+ * Implements hook_help().
*/
function color_help($path, $arg) {
switch ($path) {
@@ -20,7 +20,7 @@ function color_help($path, $arg) {
}
/**
- * Implement hook_theme().
+ * Implements hook_theme().
*/
function color_theme() {
return array(
@@ -31,7 +31,7 @@ function color_theme() {
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function color_form_system_theme_settings_alter(&$form, &$form_state) {
if (isset($form_state['build_info']['args'][0]) && ($theme = $form_state['build_info']['args'][0]) && color_get_info($theme) && function_exists('gd_info')) {
@@ -48,7 +48,7 @@ function color_form_system_theme_settings_alter(&$form, &$form_state) {
}
/**
- * Implement hook_form_FORM_ID_alter().
+ * Implements hook_form_FORM_ID_alter().
*/
function color_form_system_themes_alter(&$form, &$form_state) {
_color_theme_select_form_alter($form, $form_state);