summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-05-01Fix docblock of URI->rsegments propertyvlakoff1-1/+3
2014-04-29Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developAndrey Andreev4-5/+5
2014-04-29Small fixes (PR #3022)Andrey Andreev2-3/+3
- Fix incorrect variable in mb_strlen() compat - Micro-optimization of array_replace(), array_replace_recursive() compat
2014-04-25Merge pull request #3014 from vlakoff/variousAndrey Andreev4-5/+5
Various fixes
2014-04-25Minor fixesvlakoff4-5/+5
2014-04-20Merge pull request #3017 from kakysha/developAndrey Andreev1-2/+2
Doc fix for Encryption library
2014-04-19Doc fix for Encryption libraryKakysha1-2/+2
2014-04-15Merge pull request #3006 from vlakoff/securityAndrey Andreev1-1/+1
Fix in $_protected array of register_globals security procedure
2014-04-15#3005Andrey Andreev1-2/+1
2014-04-15Fix in $_protected array of register_globals security procedurevlakoff1-1/+1
* Followup to b78a8c7d40446a3e2e36772706662fd033fe7d1d * Just FYI, renamed to "system_path" in 0c1e405437ceb3c1888e151e6a400653310ad6c1
2014-04-15Fix #3004Andrey Andreev2-53/+52
2014-04-15Follow-up to aeed15eb8556ab671507f17ef9a8cf28903999aaAndrey Andreev1-1/+1
2014-04-14Change 'standardize_newlines' default to FALSEAndrey Andreev2-2/+2
I don't see why it should be enabled by default. Also, this is the functionality triggering #2923
2014-04-14Merge pull request #2999 from vlakoff/error-templatesAndrey Andreev5-8/+26
Make the error templates path configurable
2014-04-14Uniformization in smiley helper documentationvlakoff1-1/+1
oversight from 20292311636837e120d205e470e41826820feb46
2014-04-14Replace "folder" with "directory" in config.phpvlakoff1-3/+3
2014-04-14Different method for handling "error_views_path" config itemvlakoff1-15/+10
2014-04-14Rename config item "error_templates_path" to "error_views_path"vlakoff3-5/+5
2014-04-12Group error templates entries in changelogvlakoff1-1/+1
2014-04-12Make the error templates path configurablevlakoff3-2/+27
2014-04-12Small documentation updatevlakoff1-2/+0
As the error templates are now by default inside the views folder.
2014-04-09Really fix #2997Andrey Andreev1-1/+1
2014-04-09Merge pull request #2998 from etki/developAndrey Andreev1-6/+0
Microfix
2014-04-09Removed BOMEtki1-1/+1
2014-04-09MicrofixEtki1-7/+1
cleaned `return true; return true;` construction
2014-04-09Issue/PR #2997Andrey Andreev1-1/+1
2014-04-09Minor changes in FV, TrackbackAndrey Andreev3-47/+32
2014-04-06Merge pull request #2993 from vlakoff/is_phpAndrey Andreev3-4/+5
Remove default parameter of is_php()
2014-04-05Remove default parameter value of is_php()vlakoff3-4/+5
It was simply pointless.
2014-04-04[ci skip] Document 'first_url' Pagination option (supersedes PR #2992)Andrey Andreev1-0/+5
2014-04-01Merge pull request #2983 from iBotPeaches/developAndrey Andreev1-1/+1
fixes warnings
2014-04-01fixes warningsConnor Tumbleson1-1/+1
2014-04-01Optimize #2982Andrey Andreev1-1/+1
2014-04-01Merge pull request #2981 from vlakoff/base_urlAndrey Andreev2-5/+13
Work on determination of "base_url" config item
2014-04-01Discard the unwanted changesvlakoff2-4/+17
2014-04-01Add test for "base_url" determination on server rootvlakoff1-2/+10
2014-04-01Yet another method for determining "base_url"vlakoff1-8/+1
This one is great because we don't have to deal with the special cases: * in Windows, dirname('/foo/index.php') gives "/foo", but dirname('/index.php') gives "\" instead of "/" * dirname() doesn't include the trailing slash, with the expection of "/" (root) props @narfbg
2014-04-01Merge pull request #2982 from aanbar/migration-fixAndrey Andreev1-1/+9
Fix #2970
2014-04-01Remove spaces around concatenationsvlakoff1-3/+3
per request
2014-04-01Removed tab on empty line too.Ahmad Anbar1-1/+1
2014-04-01Removed tabs.Ahmad Anbar1-2/+2
2014-04-01Fixed according to comment.Ahmad Anbar1-3/+6
2014-04-01Fix #2970Ahmad Anbar1-1/+6
2014-03-31Remove test that has become unfitvlakoff1-7/+1
2014-03-31Different method for determining "base_url"vlakoff1-2/+7
Better performance by not using regex.
2014-03-31Robuster determination of "base_url" config itemvlakoff1-1/+3
Remove the basename only at the end, to avoid edge cases.
2014-03-31Refactoring in Config->__construct()vlakoff1-10/+3
Put the $_SERVER['HTTP_HOST'] fallback in a more logical place.
2014-03-31[ci skip] Fix #2972Andrey Andreev1-1/+1
2014-03-30Fix #2976Andrey Andreev1-0/+4
2014-03-25Simplify callback routesAndrey Andreev1-29/+0
There's no need for all that Reflection magic, it's only slowing down the whole process