Closed (fixed)
Project:
Link
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
15 Dec 2021 at 14:17 UTC
Updated:
11 Mar 2022 at 07:29 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
damienmckennaThis is what I'm thinking.
Comment #3
renatog commentedIn the beginning I was thinking if instead of
if ($title !== '') {We should use
if (!empty($title)) {But now I can see that it's really makes sense.
In some cases if the string is 0, or '0' will return as "empty" as well, so the patch makes sense for me. Thanks a lot @DamienMcKenna :D
Comment #5
renatog commentedMoved to the dev branch o/
Thank you so much for always doing a great job in your contributions, Damien
Comment #6
damienmckenna👍