Bug in include_once
-
In hammy.php inside the plugins/hammy directory, the below line fails to include the options.php file:
include_once( ‘includes/options.php’ );
Change that to:
include_once( “{$hammyPath}/includes/options.php” );You will obviously have to define $hammyPath, which you can by the following:
$hammyPath = dirname( __FILE__ );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bug in include_once’ is closed to new replies.