summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2010-01-18nongreedy regexDerek Allard1-1/+1
2010-01-18updated lang file for unit test changesDerek Allard1-0/+1
2010-01-18The Unit Test Class now has an optional "notes" field available to it, and ↵Derek Allard1-12/+48
allows for discrete display of test result items using $this->unit->set_test_items().
2010-01-17Added 'application/x-msdownload' for .exe files and ↵Derek Allard1-3/+3
''application/x-gzip-compressed' for .tgz files to config/mimes.php
2010-01-17optional precision argument in byte_format()Derek Allard1-6/+8
2010-01-17Added Flock to the list of browsers in the user agent classDerek Allard1-0/+1
2010-01-17adding Chrome to list of browsers for user-agent classDerek Allard1-0/+1
2010-01-17change already made - revertDerek Allard1-1/+1
2010-01-17making get_mime_by_extension case insensitiveDerek Allard1-1/+1
2010-01-17adding the ability for form_open_multipart() to accept string attribute ↵Derek Allard1-1/+9
arguments
2010-01-16adding http headers and config to CI profilerDerek Allard2-6/+77
2010-01-16preg_quote() in parserDerek Allard1-1/+1
2010-01-15adding parse_string methodDerek Allard2-7/+46
adding null values generating an empty cell in table lib
2010-01-15Update to file helper to return FALSE on failure.Greg Aker1-2/+6
2010-01-07changing the second parameter in directory_map to an integer that controls ↵Pascal Kriete1-18/+14
recursion depth. A depth of 0 is fully recursive to maintain backward compatibility with the boolean values.
2010-01-06changed isset() to array_key_exists() in values_parsing() conditional of ↵Derek Jones1-1/+1
XML-RPC class to allow for array keys set with NULL values
2010-01-05updated copyrightsDerek Jones99-99/+99
2009-12-23tweaking the regex for reduce_double_slashes to correctly handle duplicates ↵Pascal Kriete1-1/+1
at the beginning of the string
2009-12-22Added "is_object" into the list of unit tests capable of being run.Derek Allard1-1/+1
2009-12-16Change to CI's db->version() function to allow a list of exceptions for dbs ↵Derek Allard1-5/+11
with functions to return version string, vs SQL queries to return version strings. Currently this list only includes Oracle and SQLite.
2009-12-07Fixed a language key in the profiler: "profiler_no_memory_usage" to ↵Derek Allard1-1/+1
"profiler_no_memory".
2009-12-07Fixed an error in the Zip library that didn't allow downloading on PHP 4 ↵Derek Allard1-2/+4
servers.
2009-12-05tweak in database() to match change to $active_record variableDerek Jones1-1/+1
2009-12-05fixed bug where active record override wasn't being honored properlyDerek Jones2-4/+4
2009-11-27non-backwards compatible change to get_dir_file_info() for performance ↵Derek Jones1-6/+8
reasons, as well as fixing recursive bug
2009-11-20margin fixDerek Allard1-1/+1
2009-11-09incorrect variable name in the smiley helper jsPascal Kriete1-1/+1
2009-11-05added hyphens to allowed characters in GET keys and vals in submitted URLs ↵Derek Jones1-1/+1
in xss_clean()
2009-11-04Modified inflector helper to properly pluralize words that end in 'ch' or 'sh'Greg Aker1-0/+11
http://codeigniter.com/bug_tracker/bug/9384/
2009-10-13numerous changes from DIR_WRITE_MODE to FILE_WRITE_MODEDerek Jones3-8/+8
chmod operations on files were using the DIR_ constant permisisons
2009-10-13added translation of fields passed as validation rule parametersPascal Kriete1-1/+1
2009-10-08Deprecated the dohash() function in favour of do_hash() for naming consistency.Derek Allard1-2/+18
2009-09-28uncommenting a functionDerek Allard1-3/+3
2009-09-25Made get_mime_by_extension() case insensitive.Derek Allard1-1/+1
2009-09-24increased randomness of file name used in is_really_writable()Derek Jones1-1/+1
2009-09-17modified the way accept-charset is addedDerek Allard1-32/+22
2009-09-16removed some trivial spaces from outputDerek Allard1-1/+1
2009-09-16removed some trivial spaces from outputDerek Allard1-4/+4
2009-09-16(no commit message)Derek Allard1-2/+2
2009-09-16adding accept-charset to form_open()Derek Allard1-1/+22
2009-09-11prep for 1.7.2 releaseDerek Jones1-1/+1
2009-08-25removed an unneeded regexDerek Allard1-2/+1
2009-08-25reverting until further testing can be doneDerek Allard1-1/+2
2009-08-25removed an unneeded regexDerek Allard1-1/+1
2009-08-24updating xml_from_result to check for list_fields instead of field_namesPascal Kriete1-1/+1
2009-08-17Fixed a bug in the language class when outputting an error for an unfound file.Derek Allard1-1/+1
2009-08-17Fixed a bug in the Calendar library where the shortname was output for "May".Derek Allard1-1/+1
2009-08-17comment fixDerek Allard1-14/+0
2009-08-17Modified MSSQL driver to use mssql_get_last_message() for error messages.Derek Allard1-2/+1
2009-08-06let's go ahead and be thorough and explicitDerek Jones1-1/+1
if ( ! is_php(5)) becomes if ( ! is_php('5.0.0')) ref: http://codeigniter.com/bug_tracker/bug/8475/