From c59a67ab405f04fbbd4505efc0a9c1dcde867902 Mon Sep 17 00:00:00 2001 From: jerome mouneyrac Date: Wed, 20 Jan 2010 01:29:12 +0000 Subject: [PATCH] webservice MDL-21351 function page: remove back button and change add button for a link --- admin/webservice/service_functions.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/admin/webservice/service_functions.php b/admin/webservice/service_functions.php index 49e9a93bfc5..aab9ce8eada 100644 --- a/admin/webservice/service_functions.php +++ b/admin/webservice/service_functions.php @@ -131,12 +131,9 @@ echo $OUTPUT->table($table); // we can edit only custom functions, the build-in would be overridden after each upgrade if (empty($service->component)) { $url = new moodle_url('service_functions.php', array('sesskey'=>sesskey(), 'id'=>$service->id, 'action'=>'add')); - echo $OUTPUT->single_button($url, get_string('add'), 'get'); + echo "".get_string('add').""; } -// simple back button -$url = new moodle_url('../settings.php', array('section'=>'externalservices')); -echo $OUTPUT->single_button($url, get_string('back'), 'get'); echo $OUTPUT->footer();