diff options
Diffstat (limited to 'modules/php')
-rw-r--r-- | modules/php/php.install | 2 | ||||
-rw-r--r-- | modules/php/php.module | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/php/php.install b/modules/php/php.install index a8ac75ce7..a9eaa8b67 100644 --- a/modules/php/php.install +++ b/modules/php/php.install @@ -38,7 +38,7 @@ function php_enable() { } /** - * Implement hook_disable(). + * Implements hook_disable(). */ function php_disable() { drupal_set_message(t('The PHP module has been disabled. Please note that any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code.')); diff --git a/modules/php/php.module b/modules/php/php.module index b623e28ff..eb7a1020e 100644 --- a/modules/php/php.module +++ b/modules/php/php.module @@ -7,7 +7,7 @@ */ /** - * Implement hook_help(). + * Implements hook_help(). */ function php_help($path, $arg) { switch ($path) { @@ -21,7 +21,7 @@ function php_help($path, $arg) { } /** - * Implement hook_permission(). + * Implements hook_permission(). */ function php_permission() { return array( @@ -120,7 +120,7 @@ else { } /** - * Implement hook_filter_info(). + * Implements hook_filter_info(). * * Provide PHP code filter. Use with care. */ |