summaryrefslogtreecommitdiff
path: root/modules/php
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-14 18:08:50 +0000
commitb6532a4fdbb5e32f2ab3bd7250aedd435313e52e (patch)
tree9859cf173b9c7bc75ddd1901fd77d05d9b3a28a1 /modules/php
parent4f2b77bcd99584b2a31cb9900620f376a7707b2f (diff)
downloadbrdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.gz
brdo-b6532a4fdbb5e32f2ab3bd7250aedd435313e52e.tar.bz2
#200069 by keith.smith: new standard for 'more information' links in module help texts, as the handbook we referred to before was renamed
Diffstat (limited to 'modules/php')
-rw-r--r--modules/php/php.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/php/php.module b/modules/php/php.module
index ca3131ca2..121db0823 100644
--- a/modules/php/php.module
+++ b/modules/php/php.module
@@ -16,7 +16,7 @@ function php_help($path, $arg) {
$output = '<p>'. t('The PHP filter adds the ability to include PHP code in posts. PHP is a general-purpose scripting language widely-used for web development; the content management system used by this website has been developed using PHP.') .'</p>';
$output .= '<p>'. t('Through the PHP filter, users with the proper permission may include custom PHP code within a page of the site. While this is a powerful and flexible feature if used by a trusted user with PHP experience, it is a significant and dangerous security risk in the hands of a malicious user. Even a trusted user may accidentally compromise the site by entering malformed or incorrect PHP code. Only the most trusted users should be granted permission to use the PHP filter, and all PHP code added through the PHP filter should be carefully examined before use.') .'</p>';
$output .= '<p>'. t('<a href="@drupal">Drupal.org</a> offers <a href="@php-snippets">some example PHP snippets</a>, or you can create your own with some PHP experience and knowledge of the Drupal system.', array('@drupal' => url('http://drupal.org'), '@php-snippets' => url('http://drupal.org/handbook/customization/php-snippets'))) .'</p>';
- $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@php">PHP filter page</a>.', array('@php' => 'http://drupal.org/handbook/modules/php/')) .'</p>';
+ $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@php">PHP module</a>.', array('@php' => 'http://drupal.org/handbook/modules/php/')) .'</p>';
return $output;
}
}