diff options
Diffstat (limited to 'sqlbox/locallib.php')
-rw-r--r-- | sqlbox/locallib.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sqlbox/locallib.php b/sqlbox/locallib.php index 3916d34..359d5ae 100644 --- a/sqlbox/locallib.php +++ b/sqlbox/locallib.php @@ -40,10 +40,12 @@ defined('MOODLE_INTERNAL') || die(); //} function db_table_from_query($db, $query) { + global $PAGE; + $table = new html_table; $result = @pg_query($db, $query); if (!$result) - error("Query failed: ".pg_last_error($db)); + print_error('queryfailed', 'sqlbox', $PAGE->url, pg_last_error($db)); $table = new html_table; $n = pg_num_fields($result); |