Opened 20 years ago
Closed 20 years ago
#1266 closed defect (bug) (fixed)
0 in title
Reported by: | anonymousbugger | Owned by: | matt |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | minor | Version: | 1.5 |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
Title's not displayed when it equals to 0 (zero).
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
We were using if(!empty($title)) to check, but empty() returns TRUE on 0
I changed it to if(strlen($title) > 0) in the patch.