Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to the File Helper.
Changed ( ! condition) into (! condition) within the code
diff --git a/system/libraries/Pagination.php b/system/libraries/Pagination.php
index 28b74f1..e121203 100644
--- a/system/libraries/Pagination.php
+++ b/system/libraries/Pagination.php
@@ -132,7 +132,7 @@
show_error('Your number of links must be a positive number.');
}
- if ( ! is_numeric($this->cur_page))
+ if (! is_numeric($this->cur_page))
{
$this->cur_page = 0;
}