Closed (fixed)
Project:
Page Throbber
Version:
7.x-1.0
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Feb 2013 at 20:20 UTC
Updated:
19 Jun 2013 at 17:17 UTC
In the first few lines of the module, where three constants are defined, because the constant names are left without quotes, they generate "assumed constant" notices.
define (PAGE_THROBBER_VIS_NOTLISTED, 0);
define (PAGE_THROBBER_VIS_LISTED, 1);
define (PAGE_THROBBER_VIS_PHP, 2);
should be:
define ('PAGE_THROBBER_VIS_NOTLISTED', 0);
define ('PAGE_THROBBER_VIS_LISTED', 1);
define ('PAGE_THROBBER_VIS_PHP', 2);
I know. Nit-picky. : )
Comments
Comment #1
liquidcms commentedNot picky. Ill have it fixed in next couple days.
Comment #2
pmusaraj commentedThis should be fixed as of version 1.3.