diff options
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/database.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/lib/database.php b/engine/lib/database.php index 379cfbfc0..7f012fc17 100644 --- a/engine/lib/database.php +++ b/engine/lib/database.php @@ -125,7 +125,7 @@ * @return array An array of database result objects
*/
- function get_data($query, $callback = "", $debug = false) {
+ function get_data($query, $callback = "") {
global $CONFIG, $dbcalls;
@@ -155,7 +155,6 @@ if (empty($resultarray)) { return false; }
- if ($debug) var_export($resultarray);
return $resultarray;
}
|