From 19384dfb7043473a0f7d9ee70d029633f4befee2 Mon Sep 17 00:00:00 2001 From: ethem Date: Wed, 15 Nov 2006 07:39:04 +0000 Subject: [PATCH] MDL-6937 MDL-7561 MDL-7562 Need to be used new forms api. Please see also: * enrol.php: check_entry(), config_form(), process_config() * localfuncs.php: validate_cc_form(), validate_echeck_form() --- enrol/authorize/{config.html => config_form.php} | 0 enrol/authorize/enrol.php | 4 ++-- enrol/authorize/{enrol.html => enrol_form.php} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename enrol/authorize/{config.html => config_form.php} (100%) rename enrol/authorize/{enrol.html => enrol_form.php} (100%) diff --git a/enrol/authorize/config.html b/enrol/authorize/config_form.php similarity index 100% rename from enrol/authorize/config.html rename to enrol/authorize/config_form.php diff --git a/enrol/authorize/enrol.php b/enrol/authorize/enrol.php index 5a1ec3e18b..3a4b9798ed 100755 --- a/enrol/authorize/enrol.php +++ b/enrol/authorize/enrol.php @@ -78,7 +78,7 @@ class enrolment_plugin_authorize echo '

'.get_string('loginsite').'

'; echo ''; } else { - include($CFG->dirroot.'/enrol/authorize/enrol.html'); + include($CFG->dirroot.'/enrol/authorize/enrol_form.php'); } print_simple_box_end(); @@ -448,7 +448,7 @@ class enrolment_plugin_authorize } } - include($CFG->dirroot.'/enrol/authorize/config.html'); + include($CFG->dirroot.'/enrol/authorize/config_form.php'); } diff --git a/enrol/authorize/enrol.html b/enrol/authorize/enrol_form.php similarity index 100% rename from enrol/authorize/enrol.html rename to enrol/authorize/enrol_form.php -- 2.39.5