CodeIgniter
CodeIgniter copied to clipboard
Open Source PHP Framework (originally from EllisLab)
Currently sphinx_rtd_theme is a fixed asset in the repository. This can lead to various problems: - search doesn't work anymore when building the doc with recent sphinx - generated html...
After long thoughts and checks on this, I came up with this fix for the XML-RPC library for the new PHP 8 versions. While I pushed a unit test and...
This adds support for PHP 8.2. Basically, fixing dynamic props assigning.
There is a little bug, which causes warning. Entire method uses `$data` variable, but in conditional check, there is `$value`. Leftover from recent updates.
``` ``` 
This will fix the errors, warning & deprecations when testing with phpunit10 Pick whatever you may find relevant and a correct fix. It is assumed this is run with phpunit...
hello, Will they keep updating CI3?
`$this->db->limit(0)->get('table')` returns no records. But `$this->db->get('table', 0)` returns all records. Steps to reproduce: ```php $config['database'] = './test.db'; $config['dbdriver'] = 'sqlite3'; $this->load->database($config); $this->load->dbforge(); $fields = array( 'name' => array( 'type' =>...
I think I found a problem with xss_clean function. I this code section (Security.php): f (stripos($str, '%') !== false) { do { $oldstr = $str; $str = rawurldecode($str); $str =...