summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2015-02-03Fix a wrong var name in class CI_DB_pdo_4d_forge::_attr_typeGwenael Gallon1-1/+1
2015-02-02Fix a wrong var name in CI_Session::mark_as_temp()Andrey Andreev1-1/+1
2015-02-02Err ... rAndrey Andreev1-1/+1
2015-02-02Throw exception if 'files' session path is invalidAndrey Andreev1-4/+10
2015-01-31Fixed horizontal position of watermark text when using drop shadowomar1-1/+1
2015-01-31Fixed Watermark function to work without drop shadowomar1-30/+46
2015-01-31Reduce once server protocol checkbjjay1-3/+2
2015-01-30Log an error message if composer_autoload is not found.Andrey Andreev1-2/+8
2015-01-30[ci skip] Load vendor/autoload.php earlierAndrey Andreev1-17/+17
2015-01-29fix typo in commentsClaudio Galdiolo1-7/+7
2015-01-29fix typo in commentsClaudio Galdiolo1-1/+1
2015-01-29fix typo in commentsClaudio Galdiolo1-1/+1
2015-01-29fix typo in commentsClaudio Galdiolo1-1/+1
2015-01-29fix typo in commentsClaudio Galdiolo1-1/+1
2015-01-29Fix #3529Andrey Andreev1-1/+1
Seems to be some really obscure PHP bug ...
2015-01-28[ci skip] Correct a docblock following PR #3521Andrey Andreev1-1/+1
2015-01-28Merge pull request #3521 from foxlance/developAndrey Andreev2-0/+15
Add 'in_list' form validation rule
2015-01-28fix typo in commentsClaudio Galdiolo1-1/+1
2015-01-28change in to in_listLance Vincent2-2/+2
2015-01-28Form Validation - In MethodLance Vincent2-0/+15
2015-01-28Form Validation - In MethodLance Vincent2-0/+17
Returns true if a given value matches any of the specified list
2015-01-27is_php() more accurate descriptionkakysha1-1/+1
2015-01-26... and neither does MYSQLI_OPT_RECONNECTAndrey Andreev1-1/+0
2015-01-26Apparently MYSQLI_OPT_READ_TIMEOUT doesn't work on PHPAndrey Andreev1-1/+0
2015-01-26Close #3509Andrey Andreev1-0/+4
Not really a bug, but ...
2015-01-23Corrected loop with the $c variableGwenael G1-1/+1
2015-01-23Fix error extends class nameGwenael G1-1/+1
2015-01-23This $comment_clause local variable is declared but never used.Gwenael G1-2/+0
2015-01-23This paragraph local variable is declared but never used.Gwenael G1-1/+0
2015-01-22Um ... I meant autoload.phpAndrey Andreev1-1/+1
#3497
2015-01-22Don't try to include config/autoload.php if it doesn't existAndrey Andreev1-1/+5
Related: #3497
2015-01-22Merge pull request #3490 from vlakoff/file_endingsAndrey Andreev172-516/+0
[ci skip] Remove closing blocks at end of PHP files
2015-01-21[ci skip] Whitespace removalAndrey Andreev1-3/+0
2015-01-21Remove closing blocks at end of PHP filesvlakoff172-516/+0
2015-01-21Make libraries matching controller names loadableAndrey Andreev1-71/+103
2015-01-20Revert 7c4d10660a0a47446474bf97e3cb65f80693f1eeAndrey Andreev1-30/+14
Deprecates form_prep() in favor of html_escape() (again). Related: issue #1953, which was the reason for the reverted commit, but was wrongly interpreted and that shouldn't have happened. Close #2477
2015-01-20Pagination: Add 'use_global_url_suffix' settingAndrey Andreev1-0/+12
Resolves issue #1887
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev38-49/+52
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated.
2015-01-20Merge pull request #3427 from gadelat/logdateAndrey Andreev1-1/+14
Support for microseconds in CI_Log
2015-01-20Remove error suppression from mysql_*connect()Andrey Andreev1-2/+2
The suppression was kept so far because mysql_connect(), mysql_pconnect() emit E_DEPRECATION messages on PHP 5.5+. Well, we already default to 'mysqli' and there's no reason to use specifically 'mysql' on PHP 5.5, so we might as well let the deprecation notices appear and encourage users to switch drivers.
2015-01-19A minor header update, CI_Session_driver.Ivan Tcholakov1-1/+1
2015-01-19Merge branch 'develop' into feature/sessionAndrey Andreev2-3/+3
2015-01-19[ci skip] feature/session (#3073): Add missing method docblocksAndrey Andreev6-0/+267
2015-01-19feature/session (#3073): Add CI_Session:: as reference toAndrey Andreev1-0/+9
For backwards compatibility purposes.
2015-01-19feature/session (#3073): Fix non-existing variable errorAndrey Andreev1-1/+1
2015-01-19feature/session (#3073): Only PostgreSQL data should be base64-encodedAndrey Andreev1-4/+15
2015-01-15feature/session (#3073): Third time is the charmAndrey Andreev1-1/+1
2015-01-15feature/session (#3073): Fix an error from previous patchAndrey Andreev1-5/+4
2015-01-15[ci skip] Add a note about sess_table_nameAndrey Andreev1-0/+1
2015-01-15feature/session (#3073): Improve PostgreSQL storageAndrey Andreev1-10/+18
Use a TEXT field with Base64-encoded data under PostgreSQL. Also, renamed a variable.