From 80c85b0c5d3bf166aaf3295b3f99daf3a62ab280 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 8 Jul 2007 23:58:05 +0000 Subject: [PATCH] Now tested against Oracle too. Adding option to XMLDB Editor interface. MDL-7357 Merged from MOODLE_18_STABLE --- admin/xmldb/actions/main_view/main_view.class.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/admin/xmldb/actions/main_view/main_view.class.php b/admin/xmldb/actions/main_view/main_view.class.php index 921cb711b5..673cb885a0 100644 --- a/admin/xmldb/actions/main_view/main_view.class.php +++ b/admin/xmldb/actions/main_view/main_view.class.php @@ -47,7 +47,8 @@ class main_view extends XMLDBAction { 'delete' => 'xmldb', 'reservedwords' => 'xmldb', 'test' => 'xmldb', - 'gotolastused' => 'xmldb' + 'gotolastused' => 'xmldb', + 'checkindexes' => 'xmldb' )); } @@ -84,6 +85,8 @@ class main_view extends XMLDBAction { $b .= ' [' . $this->str['reservedwords'] . ']'; /// The test button $b .= ' [' . $this->str['test'] . ']'; + /// The check indexes button + $b .= ' [' . $this->str['checkindexes'] . ']'; $b .= '

'; /// Send buttons to output $o .= $b; -- 2.39.5