Date pulled from database in varuable "$request.date" as "0000-00-00 00:00:00" when display variable {$request.date} it it shows correct .
But when i try format it e.g. {$request.date|date_format:"%Y-%m-%d"} it shows today's date instead.
I need to check somehow if database's date is empty e.g. all zeros and if it is show something else
I used to have
{if $request.date|date_format:"%Y"} == "1999"}
Date NOT Set
{else}
Date Set
{/if}
but after transferring to new server i does not work anymore because date is different.
Is there way to use mid or left function to get year? i tried {$number|string_format:"%d"} but it display 0 i am not sure if this is from time or year.
0000-00-00 00:00:00dates? Anddate_formatis not able to display it properly (that is0000-00-00in your case)? If so, what's that1999in your code? – lorenzo-s Jan 17 '12 at 21:56{if}condition, two, you cannot nest{}braces (you are doing it in your condition, you open one, you close two). – lorenzo-s Jan 18 '12 at 20:44