diff options
-rw-r--r-- | includes/database.mysql.inc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/includes/database.mysql.inc b/includes/database.mysql.inc index e3bd26d42..d2f4aee04 100644 --- a/includes/database.mysql.inc +++ b/includes/database.mysql.inc @@ -124,23 +124,6 @@ function db_affected_rows() { * @param integer $from the row to start to fetching * @param integer $count the numbers of rows to fetch * - * @return mixed a DB_Result object or a DB_Error - * - * @access public - */ -function db_query_range($query, $from, $count) { - $query .= " LIMIT $from, $count"; - // TODO: debug version - return db_query($query); -} - -/** - * Generates a limited query - * - * @param string $query query - * @param integer $from the row to start to fetching - * @param integer $count the numbers of rows to fetch - * * @access public */ function db_query_range($query, $from, $count) { |