From 20397ad3d9dad39670ed92923d2513bd89c7b0bb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 20 May 2001 13:51:40 +0000 Subject: CHANGES - Redid settings.module and even renamed it to conf.module. * Settings are now grouped in basic categories like "system settings", "module settings" and "filters". * Added new settings to make Drupal easier to configure and to make some aspects like the watchdog scale better. - Renamed includes/settings.php to includes/conf.php. - Added filter support to conf.module and introduced filter hooks so modules can implement and export new filters. Example filters are an HTML filter (implemented), a profanity filter, an url converter, ASCII smileys to images filter and so on ... - Reworked the check_* functions: user contributed content/input is only verified and filtered once in its lifespan. NOTES - Altough this is a large commit, no database changes are required. --- modules/box.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/box.module') diff --git a/modules/box.module b/modules/box.module index 5edc748ac..5ae9aa538 100644 --- a/modules/box.module +++ b/modules/box.module @@ -104,7 +104,7 @@ function box_admin_edit($id) { $output .= "

\n"; $output .= " Subject:
\n"; - $output .= " subject) ."\">\n"; + $output .= " subject) ."\">\n"; $output .= "

\n"; $output .= "

\n"; $output .= " Content:
\n"; @@ -120,11 +120,11 @@ function box_admin_edit($id) { $output .= "

\n"; $output .= "

\n"; $output .= " Description:
\n"; - $output .= " info) ."\">\n"; + $output .= " info) ."\">\n"; $output .= "

\n"; $output .= "

\n"; $output .= " Link:
\n"; - $output .= " link) ."\">\n"; + $output .= " link) ."\">\n"; $output .= "

\n"; $output .= "

\n"; $output .= " \n"; -- cgit v1.2.3