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.