From 3917c07e35807d05f84d4bc7e004dd53d695f4de Mon Sep 17 00:00:00 2001 From: moodler Date: Wed, 1 Aug 2007 08:25:41 +0000 Subject: [PATCH] Added supportpage as well, while I'm at it. MDL-10529 --- admin/settings/server.php | 1 + version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/settings/server.php b/admin/settings/server.php index 3189ba1000..facfb44b09 100644 --- a/admin/settings/server.php +++ b/admin/settings/server.php @@ -56,6 +56,7 @@ $temp->add(new admin_setting_configselect('sitemailcharset', get_string('sitemai $temp->add(new admin_setting_configcheckbox('allowusermailcharset', get_string('allowusermailcharset', 'admin'), get_string('configallowusermailcharset', 'admin'), 0)); $temp->add(new admin_setting_configtext('supportname', get_string('supportname', 'admin'), get_string('configsupportname', 'admin'), '', PARAM_NOTAGS)); $temp->add(new admin_setting_configtext('supportemail', get_string('supportemail', 'admin'), get_string('configsupportemail', 'admin'), '', PARAM_NOTAGS)); +$temp->add(new admin_setting_configtext('supportpage', get_string('supportpage', 'admin'), get_string('configsupportpage', 'admin'), '', PARAM_URL)); $ADMIN->add('server', $temp, 100); diff --git a/version.php b/version.php index af7355132d..66bb6f77ad 100644 --- a/version.php +++ b/version.php @@ -6,7 +6,7 @@ // This is compared against the values stored in the database to determine // whether upgrades should be performed (see lib/db/*.php) - $version = 2007080101; // YYYYMMDD = date + $version = 2007080102; // YYYYMMDD = date // XY = increments within a single day $release = '1.9 dev'; // Human-friendly version name -- 2.39.5