summaryrefslogtreecommitdiff
path: root/modules/php
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/php
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/php')
-rw-r--r--modules/php/php.install2
-rw-r--r--modules/php/php.module6
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.
*/