local bugfix build

fixed app.php/portal display
fixed if page has ?style=2 or any ? in link as that was breaking the
load scripts
This commit is contained in:
talonos
2016-02-12 18:51:32 +00:00
parent ff37120dae
commit 1e3ef7e64c
64 changed files with 5754 additions and 0 deletions

25
migrations/0.3.4.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
/**
*
* @package mChat on Board3 Portal 0.3.4
* @copyright (c) 2015 Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace dmzx\mchat\migrations;
class 0.3.4 extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return array('\dmzx\mchat\migrations\install_mchat');
}
public function update_data()
{
return array(
array('config.add', array('mchat_on_portal', 1)),
);
}
}