summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
AgeCommit message (Collapse)AuthorFilesLines
2023-01-29Merge remote-tracking branch 'upstream/develop' into devFlorian Pritz1-27/+45
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2023-01-29feat(PHP8.2): Fix dynamic properties deprecation warningsFlorian Pritz1-0/+1
Signed-off-by: Florian Pritz <bluewind@xinu.at>
2022-03-03Merge branch '3.1-stable' into developAndrey Andreev1-1/+2
2022-03-02[ci skip] Update copyright noticesAndrey Andreev1-1/+2
2022-01-05Whoops. Broke something in 004f0a1b41c27e3d40f62a51300599d35c54c0c0Andrey Andreev1-1/+1
2022-01-05Drop option to disable Query BuilderAndrey Andreev1-7/+4
I don't know if it has ever worked properly, too much things break if you do try to disable it.
2022-01-05Polish changes from PR #5373Andrey Andreev1-14/+4
2022-01-05Merge branch 'feature/uncache_ci_vars' of github.com:TalonTR/Codeigniter ↵Andrey Andreev1-5/+46
into feature/viewvars
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-1/+1
Fix user guide url
2020-06-24Fix user guide urlsapics1-1/+1
Replace from https://codeigniter.com/user_guide/* to https://codeigniter.com/userguide3/*
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-12-27Update copyright date to 2019Jim Parry1-2/+2
2018-05-18http:// to https://Mehdi Bounya1-2/+2
2018-03-15fixed styleguide violationsChristian Mohr1-3/+6
2018-03-07improved code structure and commentsChristian Mohr1-15/+27
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2018-01-09Annual copyright updateMaster Yoda1-2/+2
2018-01-03fixed case without parameterChristian Mohr1-0/+5
Signed-off-by: Christian Mohr <christian.mohr@insitu.de>
2018-01-03reproduce caching behaviour for nested view() callsChristian Mohr1-1/+1
Signed-off-by: Christian Mohr <christian.mohr@insitu.de>
2018-01-03reproduce caching behaviour for nested view() callsChristian Mohr1-11/+7
Signed-off-by: Christian Mohr <christian.mohr@insitu.de>
2018-01-03reproduce caching behaviour for nested view() callsChristian Mohr1-4/+30
Signed-off-by: Christian Mohr <christian.mohr@insitu.de>
2018-01-03prevent _ci_vars from being cached in _ci_cached_varsChristian Mohr1-4/+3
Signed-off-by: Christian Mohr <christian.mohr@insitu.de>
2017-11-15Merge branch '3.1-stable' into developAndrey Andreev1-1/+7
Note: This intentionally reverts ee8324368f2844aae0d558f1d194419a2181c281
2017-11-10Close #5330Andrey Andreev1-1/+7
2017-11-06[ci skip] Merge pull request #5321 from PrestigeT/documentationAndrey Andreev1-1/+1
Fixed docblock on model function. Changed @param model from string to mixed
2017-11-02Fixed docblock on model function. Changed @param model from string to mixedAvrom1-1/+1
2017-09-25Merge branch '3.1-stable' into developAndrey Andreev1-37/+35
2017-07-06[ci skip] Merge pull request #5173 from Syafiqq/developAndrey Andreev1-1/+1
Add array identifier for library loader docblock
2017-07-06Add array identifier for library loaderSyafiqq1-1/+1
2017-06-28[ci skip] Remove redundant elses from CI_Loader::_ci_load_stock_library()Andrey Andreev1-8/+4
2017-06-28#5164 fix for stock librariesAndrey Andreev1-10/+11
2017-06-28Correct fix for #5164Andrey Andreev1-1/+1
894a3f2c9fe111af35dee4f5e8e711259b893fb6
2017-06-27Fix #5164Andrey Andreev1-20/+21
2017-06-21Always check whether a model be a subclass of CI_Model when loaded.tianhe19861-2/+3
Signed-off-by: tianhe1986 <w1s2j3229@163.com>
2017-01-11[ci skip] Merge pull request #4977 from ↵Andrey Andreev1-1/+1
fabiospampinato/fabiospampinato-loader-helper-regex-fix Fixed regex used for loading helpers
2017-01-11Fixed regex used for loading helpersFabio Spampinato1-1/+1
We want to exactly match a dot, so we have to escape it. I found the bug because in my project I load an helper named `session_php_helper.php`, so the `_php` part gets removed and the `session_helper.php` helper gets loaded instead, this way not even an error was shown.
2017-01-10Merge branch '3.1-stable' into developAndrey Andreev1-30/+28
Conflicts resolved: system/core/CodeIgniter.php system/database/drivers/sqlite/sqlite_driver.php system/database/drivers/sqlite/sqlite_forge.php system/database/drivers/sqlite/sqlite_result.php system/database/drivers/sqlite/sqlite_utility.php system/helpers/email_helper.php system/helpers/smiley_helper.php system/libraries/Cart.php system/libraries/Email.php system/libraries/Image_lib.php system/libraries/Javascript.php system/libraries/Javascript/Jquery.php system/libraries/Session/SessionHandlerInterface.php user_guide_src/source/changelog.rst user_guide_src/source/installation/downloads.rst user_guide_src/source/installation/upgrading.rst
2017-01-10Fix Undefined variable: object errorChris Faulkner1-2/+2
Change the undefined variable $object to $vars when calling get_object_vars(). This fixes an error when passing an object to a view.
2017-01-04Fix a possible file inclusion vulnerability in CI_Loader::vars()Andrey Andreev1-30/+28
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-12-31Update copyright data to 2017Master Yoda1-2/+2
2016-12-14Drop all PHP 5.3-related codeAndrey Andreev1-13/+2
2016-11-14Fix #4905Andrey Andreev1-32/+8
2016-05-20Merge pull request #4638 from kasimtan/phpdoc_fixesAndrey Andreev1-1/+1
[ci skip] Fixed PHPDoc parameter name and type discrepancies
2016-03-11Add a defensive check in CI_Loader::_ci_load()Andrey Andreev1-0/+8
Prevents possible internal variable overwrites when loading views
2016-02-24Merge pull request #4480 from versalle88/developAndrey Andreev1-1/+1
Changed class_exists() calls to ignore __autoload()
2016-02-15Merge pull request #4453 from EpicKris/feature/Autoload-Driver-Object-NameAndrey Andreev1-6/+10
Autoload Driver Object Names
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-2/+2
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2