In com_sppagebuilder_lite_v3.6.7.zip\site\controller.php
return JError::raiseError(404, 'Page not found');
Should be
return JError::raiseError(404, JText::_('COM_SPPAGEBUILDER_ERROR_PAGE_NOT_FOUND'));
Have a nice 404 errors!
return JError::raiseError(404, 'Page not found');
return JError::raiseError(404, JText::_('COM_SPPAGEBUILDER_ERROR_PAGE_NOT_FOUND'));