Validation in Strict Standards Mode [Code] [Suggestion]
-
In the file
includes/classes/ssp_skin.php
, non-static methodSSP_SKIN::get_skin_path()
should not be called statically. Instead of
include self::get_skin_path() . 'slider.php';
use the following:
$ssp_skin = new SSP_SKIN; include $ssp_skin->get_skin_path() . 'slider.php';
Similarly, in the file
includes/classes/ssp_frontend_slider.php
, non-static methodsSSP_SKIN::setup_slider( $id, $atts );
andSSP_SKIN::render_slider();
should not be called statically. Instead, use the following:$ssp_skin = new SSP_SKIN; $ssp_skin->setup_slider( $id, $atts ); $ssp_skin->render_slider();
- The topic ‘Validation in Strict Standards Mode [Code] [Suggestion]’ is closed to new replies.