Commits auf Quelle (4)
-
verfasst von Henning Leutz
Updated the PHP version requirement from 8.0 to 8.1 in composer.json. Refactored the string operations functions in category.php and productList.php. Replaced the 'strpos' function with 'str_contains' for better readability and performance. Also replaced the usage of 'strpos' to check for string start with 'str_starts_with' for better readability. Fixed some strings formatting.
-
verfasst von Henning Leutz
This commit expands on the error handling mechanism in our product model to be more specific during logging. If a product is activated in the system but not found in the frontend (HTTP 404 response), an error message is now logged using a 'products_not_found' tag. This will make it easier to identify and address issues with deactivated products that should be active. This commonly occurs when an outdated link through a search engine directs a user to a non-existing product page.
-
verfasst von Henning Leutz
fix: update php version and optimize string operations See merge request !115
-
verfasst von Henning Leutz
Update 'next-3.x' with latest changes from 'main' See merge request !116
werden angezeigt
... | ... | @@ -16,7 +16,7 @@ |
"url": "https://www.pcsg.de" | ||
}, | ||
"require": { | ||
"php": "^8.0", | ||
"php": "^8.1", | ||
"quiqqer/core": "^2", | ||
"quiqqer/erp": "^3.2", | ||
"quiqqer/areas": "^2", | ||
... | ... |