daveherman71

Results 9 comments of daveherman71

The SQLSRV driver returns decimals and money fields without the leading 0. To fix this we require the `FormatDecimals` parameter to be passed in the `sqlsrv_driver.php` file. ``` $connection =...

I am using the `develop` branch so the line numbers differ, but here are the required changes to fix this issue: Add the following line to **/system/language/english/db_lang.php** ```php $lang['db_data_required'] =...

PWA is a front end methodology and it does not matter what backend framework you use. Have a look at this article on [dev.to](https://dev.to): [The easy way to turn a...

This is not a CodeIgniter issue. The browser keeps track of the session using cookies (as defined in the `config/config.php` file). After you redirect to the payment gateway you obviously...

For me this issue only seems to occur with the option `fill: "contain"` and you click the zoomer buttons (the slider seems to behave itself). This is how I accomplished...

Removing the check might have unintended consequences so a better approach would be to simply cast the variable as a string which is done pretty much everywhere else in the...

Correct. Also in [DB_driver.php](https://github.com/bcit-ci/CodeIgniter/blob/3658d731eaabe6117298a105ffb5b9dd59e190ce/system/database/DB_driver.php#L1351), [DB_query_builder.php](https://github.com/bcit-ci/CodeIgniter/blob/3658d731eaabe6117298a105ffb5b9dd59e190ce/system/database/DB_query_builder.php#L2785), [Session.php](https://github.com/bcit-ci/CodeIgniter/blob/3658d731eaabe6117298a105ffb5b9dd59e190ce/system/libraries/Session/Session.php#L393), [Form_validation.php](https://github.com/bcit-ci/CodeIgniter/blob/3658d731eaabe6117298a105ffb5b9dd59e190ce/system/libraries/Form_validation.php#L1215) and [Image_lib.php](https://github.com/bcit-ci/CodeIgniter/blob/3658d731eaabe6117298a105ffb5b9dd59e190ce/system/libraries/Image_lib.php#L634)

It's necessary as we don't always know what the properties are so we can't pre-define them. Consider, for example, the following code from the CI_Controller class constructor (`system\core\Controller.php`) ``` //...

Sadly this doesn't work and reports many false positives. For example in the attached image: ![image](https://github.com/user-attachments/assets/23a5e6c6-8bc2-4861-ad83-f897f17975db) `CI_Session_redis_driver` extends `CI_Session_driver` and all of the properties listed as not being declared are...