[4.4] Fix Sample data installation, fix finder helper addContentType null value#43052
Merged
laoneo merged 1 commit intojoomla:4.4-devfrom Aug 30, 2024
Merged
[4.4] Fix Sample data installation, fix finder helper addContentType null value#43052laoneo merged 1 commit intojoomla:4.4-devfrom
laoneo merged 1 commit intojoomla:4.4-devfrom
Conversation
Contributor
|
I have tested this item 🔴 unsuccessfully on 1738f32 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/43052. |
Member
Author
|
I have updated test instruction, |
Member
Author
|
Error reaporting should be set to Maximum. To be able to see messages about deprections. |
|
Error reporting was set to Maximum. |
Member
Author
|
Something is hidding the PHP message then. Can also try like: error_reporting(E_ALL);
ini_set('display_errors', 'On');
$name = uniqid(); // Imitating a new content type name, can be any string
var_dump(Joomla\Component\Finder\Administrator\Indexer\Helper::addContentType($name)); |
Contributor
Member
Author
|
I have no idea then. I can clearly see it on my PHP 8.1 |
Member
Author
|
Ah, wait. I found, please use MySQL PDO, not MySQLi. |
Contributor
|
I have tested this item ✅ successfully on 1738f32 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/43052. |
Contributor
|
I have tested this item ✅ successfully on 1738f32 This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/43052. |
Contributor
|
RTC This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/43052. |
Member
|
Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.





Pull Request for Issue # .
Summary of Changes
Helper::addContentType() allows null for mime, however $db->quote() does not.
Same as #43051 but for 4.4
Testing Instructions
Use PHP 8+, set error reaporting to Maximum.
Set DB driver to use MySQL PDO
On clean installation, try install "Blog Sample Data"Run following code (example in index.php of the template):
Actual result BEFORE applying this Pull Request
PHP warning
Deprecated: PDO::quote(): Passing null to parameter 1 ($string) of type string is deprecatedExpected result AFTER applying this Pull Request
No warning
Link to documentations
Please select: