Topic on Extension talk:HidePrefix

HidePrefix not working with PHP 5.2

3
Cheeyang (talkcontribs)

HidePrefix use __DIR__ that is not support in PHP 5.2.

12.2.142.13 (talkcontribs)

had the same problem. Added this line before the entry point if statement:

if( !defined( __DIR__ ) )define( __DIR__, dirname( __FILE__ ) );

that fixed it.

Van de Bugger (talkcontribs)

Fixed in the last version, should work with PHP 5.2 now.

Reply to "HidePrefix not working with PHP 5.2"