summaryrefslogtreecommitdiffstats
path: root/system/libraries
AgeCommit message (Collapse)AuthorFilesLines
2008-04-14added check to make sure the URI path is not constructed entirely of slashes ↵Derek Jones1-4/+4
in URI::_fetch_uri_string()
2008-04-04added constants.php file and implemented constants for file system modesDerek Jones3-8/+8
2008-04-04include() vs include_once() allows for multiple views with the same nameDerek Allard1-1/+1
2008-03-18changed include into include_onceDerek Allard1-10/+10
2008-03-18added hashing to prevent client side data tampering to sessionsDerek Allard1-0/+20
2008-03-17added filename prepping in the Upload library to prevent files with multiple ↵Derek Jones1-1/+41
extensions to potentially be parsed as a script by Apache
2008-03-05restore a commentDerek Allard1-2/+8
2008-02-27added improved check for controller method access so that CI does not ↵Derek Jones1-2/+2
attempt to load private or protected controller methods added controller/method details to framework initiated 404 pages for logging
2008-02-26changed conditional for empty cells to not match on variables that would be ↵Derek Jones1-1/+1
loosely cast as an empty string
2008-02-25Moved the safe mode and auth checks for the Email library into the constructorDerek Allard1-42/+44
2008-02-13removed the array_diff comparison in _reindex_segments(). That conditional ↵Derek Jones1-15/+8
and use of those functions is probably slower than looping through both arrays, even if someone went crazy with dozens of URI segments.
2008-02-13Fixed bug (#3445) where the routed segment array when the default ↵Derek Jones1-0/+3
controller is used was not being re-indexed to begin with 1
2008-02-10adding is_numeric back into validation libraryDerek Allard1-0/+14
2008-02-08changed order of SQL keywords in the $highlight array so OR would not be ↵Derek Jones1-1/+1
highlighted before ORDER BY
2008-02-05* Fixed a bug (#3396) where certain POST variables would cause a PHP warning.Derek Jones1-6/+15
* Added $_SERVER, $_FILES, $_ENV, and $_SESSION to sanitization of globals.
2008-02-04changed URL decoding implementation of xss_clean() to use rawurldecode() to ↵Derek Jones1-6/+3
discontinue misconversion of characters to bad entities, and to continue avoidance of unwanted removal of + signs
2008-01-30Fixed bug #1813 - added check for $CI->db isset() and is_object() before ↵Derek Jones1-4/+4
returning false in Loader::database()
2008-01-30removed last_visit from the Session classDerek Jones1-8/+2
2008-01-30bugfix (#1842) - added 'index' to routed segment array when only the ↵Derek Jones1-1/+7
controller was specified in the URI.
2008-01-30Fixed a bug (#3269) where the rsegment array would not be set properly when ↵Derek Jones1-1/+2
there is no URI request.
2008-01-30Fixed a bug (#2679) where the "previous" pagination link would get drawn on ↵Derek Allard1-1/+1
the first page.
2008-01-30fixed bug (#3284) where the $rsegment array would not be set properly if the ↵Derek Jones1-2/+3
requested URI contained more segments than the routed URI.
2008-01-30fixed bug (#3321) where the uri_string was not being set properly when ↵Derek Jones1-5/+1
retrieved from $_GET (segment based GET, not ?c=controller)
2008-01-29fixed a syntax bug in strip_imge_tagsDerek Allard1-1/+1
2008-01-29Fixed a bug (#3024) in which master_dim wasn't getting reset by clear() in ↵Derek Allard1-8/+5
the Image library. Documented clear()
2008-01-29fixed bug (#3331) with image destination path in image_process_ntpbm()Derek Jones1-1/+1
2008-01-29added verbose comment regarding the $v2_override changeDerek Jones1-0/+6
2008-01-29fixed a dynamic_output error, and a gdversion bug.Derek Allard1-9/+7
2008-01-29Fixed a bug (#2858) which referenced a wrong variable in the Image class.Derek Allard1-1/+3
2008-01-29fixed an error message, and added one if the path is invalid.Derek Allard1-1/+2
2008-01-29Removed an unused parameter from Profiler (#3332).Derek Allard1-1/+1
2008-01-28added ability to "extend" helpersDerek Jones1-1/+16
* modified Loader to check for prefixed helpers in application/helpers folder * surrounded provided helper functions with if (! function_exists('foo')) conditionals so the user's helper functions take precedent.
2008-01-28added is_really_writable() to Common.php, replaced is_writable() throughout ↵Derek Jones3-4/+4
application with is_really_writable()
2008-01-28* Added valid_base64() to the Validation classDerek Jones2-7/+38
* Tightened up validation of the supplied string given to the decode() method of the Encryption class (#3320)
2008-01-27Fixed a bug (#3330) in the FTP class where a comparison wasn't getting made.Derek Allard1-1/+1
Fixed typo in the FTP Class (ftp_unable_to_remame).
2008-01-26Added a stripslashes() into the Upload Library.Derek Allard1-1/+1
2008-01-24added CI's global variables to the protected array in_sanitize_globals()Derek Jones1-3/+4
2008-01-23added $query_times property to DB driver for profilingDerek Jones1-10/+25
added individual query execution time to profiler output
2008-01-23fixing www.codeigniter.com to codeigniter.comDerek Allard1-3/+3
2008-01-23http://codeigniter.com/bug_tracker/bug/3249/paulburdick1-0/+2
Modification so that a second calling of request() will reset the $this->data array. In the future, it might be prudent to create an initialization() method instead.
2008-01-23*Enabled the default 'system' methods for the XML-RPC Server library, except ↵paulburdick1-75/+91
for 'system.multicall' which is still disabled.
2008-01-23Fixed a bug in the XML-RPC library so that if not type is specified, a more ↵paulburdick1-9/+15
intelligent decision is made as to the default type Also fixed a few formatting problems and updated the eregi() to preg_match() and strncmp().
2008-01-22removed extraneous load of $CFG in _display_cache()Derek Jones1-1/+0
2008-01-22changed a code comment param int to param stringDerek Allard1-1/+1
2008-01-22modifications to numeric and integer validationDerek Allard1-2/+3
2008-01-22fixed bug #3279 - removed iso-8859-1 from $this->_base_charsets, and altered ↵Derek Jones1-20/+27
_get_encoding() to check more broadly for 7bit character sets before deciding whether to set the encoding to 7-bit or 8-bit.
2008-01-22Changed the load protocol of Models to allow for extension.Derek Allard1-1/+1
2008-01-22prefixed all the variables in _ci_load() to avoid symbol collision in view filesDerek Jones1-14/+16
2008-01-22Fixed a bug (#3015) in the User Agent library where more then 2 languages ↵Derek Allard1-1/+1
where not reported with languages().
2008-01-22Changed "numeric" to use is_numeric() and added an "integer" rule into the ↵Derek Allard1-7/+7
Validation library.