From: skodak Date: Sun, 25 May 2008 22:22:57 +0000 (+0000) Subject: MDL-14957 fixed get_tables() comments X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=71c920cf8f1ee4fbaf69f37bb82cd7513c4e88f3;p=moodle.git MDL-14957 fixed get_tables() comments --- diff --git a/lib/dml/adodb_moodle_database.php b/lib/dml/adodb_moodle_database.php index 49359ced51..9915e30a3d 100644 --- a/lib/dml/adodb_moodle_database.php +++ b/lib/dml/adodb_moodle_database.php @@ -107,7 +107,7 @@ abstract class adodb_moodle_database extends moodle_database { } /** - * Return tables in database with WITHOUT current prefix + * Return tables in database WITHOUT current prefix * @return array of table names in lowercase and without prefix */ public function get_tables() { diff --git a/lib/dml/moodle_database.php b/lib/dml/moodle_database.php index 5d08d93a3e..3ec7551607 100644 --- a/lib/dml/moodle_database.php +++ b/lib/dml/moodle_database.php @@ -322,8 +322,8 @@ abstract class moodle_database { } /** - * Return tables in database with current prefix - * @return array of table names + * Return tables in database WITHOUT current prefix + * @return array of table names in lowercase and without prefix */ public abstract function get_tables();