GitHub issue (with correction): https://github.com/lat9/bootstrap_ffmm/issues/1
GitHub issue (with correction): https://github.com/lat9/bootstrap_ffmm/issues/1
What is it they say? "No good deed goes unpunished"
I do appreaciate all you have take on in the cause of Zen Cart.
Now getting the following when inserting:
Code:[13-Jun-2025 02:37:55 UTC] Request URI: /MY_ADMIN/index.php?cmd=flexible_footer_menu2&action=update, IP address: 123.234.255.255, Language id 1#0 /zc_plugins/BFFM/v2.0.1/admin/flexible_footer_menu2.php(109): zen_debug_error_handler() #1 /MY_ADMIN/index.php(28): require('/home/texacana/...') --> PHP Warning: Undefined array key "image_delete" in /zc_plugins/BFFM/v2.0.1/admin/flexible_footer_menu2.php on line 109.
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
Corrected now as well (thanks); see this GitHub issue for the correction: https://github.com/lat9/bootstrap_ffmm/issues/2
That one is giving:
How about a suggestion I got from a code checker.Code:[13-Jun-2025 17:14:50 UTC] PHP Parse error: syntax error, unexpected token "===" in /zc_plugins/BFFM/v2.0.1/admin/flexible_footer_menu2.php on line 109[13-Jun-2025 17:14:50 UTC] Request URI: /MY_ADMIN/index.php?cmd=flexible_footer_menu2, IP address: 123.234.255.255--> PHP Parse error: syntax error, unexpected token "===" in /zc_plugins/BFFM/v2.0.1/admin/flexible_footer_menu2.php on line 109. [13-Jun-2025 17:14:50 UTC] Request URI: /MY_ADMIN/index.php?cmd=flexible_footer_menu2, IP address: 123.234.255.255 --> PHP Parse error: syntax error, unexpected token "===" in /zc_plugins/BFFM/v2.0.1/admin/flexible_footer_menu2.php on line 109.
Line 96
toCode:if ($col_image = new upload('col_image')) {
And, line 109Code:$col_image = new upload('col_image'); if ($col_image !== null) {
toCode:} elseif ($col_image->filename === 'none' || ($_POST['image_delete'] ?? 0) === '1')
I have tried this solution and it works on the current site. The site is running PHP 8.3.20, so the === should not have been a problem.Code:} elseif ($col_image->filename === 'none' || (isset($_POST['image_delete']) && $_POST['image_delete'] === '1')) {
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
Exactly. Maybe it's a quirk with PHP 8.3.20, but it should not be having a problem with the strict comparison.The code suggested by the 'code checker' results in the same functionality as that present in the current code. I'm not sure where that PHP error's coming from.
I've added, deleted, inserted, and edited with no problems since the change.
A little help with colors.
myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.
I tried inserting and deleting new column header or just a new link and I did not get any log like the one above on PHP 8.3.22 or PHP 8.4.8.