summaryrefslogtreecommitdiff
path: root/modules/php/php.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-01-21 16:58:42 +0000
committerDries Buytaert <dries@buytaert.net>2009-01-21 16:58:42 +0000
commit3dc1157a1e2a85316029e70c95bed257c697f454 (patch)
tree0c8a113790efb8232b10b532d5f0a033227f465b /modules/php/php.install
parent2c57079558a8a92ee20e845ee19df3b51625f7c7 (diff)
downloadbrdo-3dc1157a1e2a85316029e70c95bed257c697f454.tar.gz
brdo-3dc1157a1e2a85316029e70c95bed257c697f454.tar.bz2
- Patch #244904 by edkwh, keith.smith: renamed 'input format' to 'text format' based on UMN usability study.
Diffstat (limited to 'modules/php/php.install')
-rw-r--r--modules/php/php.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/php/php.install b/modules/php/php.install
index e65607019..e8641e7d9 100644
--- a/modules/php/php.install
+++ b/modules/php/php.install
@@ -6,7 +6,7 @@
*/
function php_install() {
$format_exists = db_result(db_query("SELECT COUNT(*) FROM {filter_format} WHERE name = 'PHP code'"));
- // Add a PHP code input format, if it does not exist. Do this only for the
+ // Add a PHP code text format, if it does not exist. Do this only for the
// first install (or if the format has been manually deleted) as there is no
// reliable method to identify the format in an uninstall hook or in
// subsequent clean installs.
@@ -17,7 +17,7 @@ function php_install() {
// Enable the PHP evaluator filter.
db_query("INSERT INTO {filter} (format, module, delta, weight) VALUES (%d, 'php', 0, 0)", $format);
- drupal_set_message(t('A !php-code input format has been created.', array('!php-code' => l('PHP code', 'admin/settings/filters/' . $format))));
+ drupal_set_message(t('A !php-code text format has been created.', array('!php-code' => l('PHP code', 'admin/settings/filter/' . $format))));
}
}