|
From: Florin C B. <ory...@us...> - 2014-05-19 18:15:15
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks/includes In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32081 Modified Files: phpbb3blocks_constants.php Log Message: some fixes for ascareus backend Index: phpbb3blocks_constants.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/includes/phpbb3blocks_constants.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** phpbb3blocks_constants.php 28 Jun 2013 15:37:22 -0000 1.5 --- phpbb3blocks_constants.php 19 May 2014 18:15:12 -0000 1.6 *************** *** 15,21 **** } ! if ( PORTAL_BACKEND != 'phpbb3' ) { ! mx_message_die(GENERAL_MESSAGE, 'There are blocks on this page designed for MX-Publisher with phpBB3 backend, thus not compatible with current setup.'); } --- 15,31 ---- } ! switch (PORTAL_BACKEND) { ! case 'internal': ! case 'smf2': ! case 'phpbb2': ! mx_message_die(GENERAL_MESSAGE, 'There are blocks on this page designed for MX-Publisher with phpBB3 backend, thus not compatible with current setup.'); ! break; ! ! case 'phpbb3': ! case 'olympus': ! case 'ascraeus': ! ! break; } |