Pagination fix
This commit is contained in:
parent
297cf418c0
commit
319d3d6138
1 changed files with 3 additions and 4 deletions
|
@ -12,12 +12,11 @@
|
|||
*/
|
||||
require_once "BlogListGenerator.php";
|
||||
|
||||
require '../res/php/Config.php';
|
||||
use mmk2410\rbe\config\Config as Config;
|
||||
require_once './res/php/Config.php';
|
||||
|
||||
$configParser = new Config('../config.yaml', '../vendor/autoload.php');
|
||||
$configParser = new mmk2410\rbe\config\Config('./config.yaml', './vendor/autoload.php');
|
||||
|
||||
$config = $configParser->getConfig();
|
||||
$conf = $configParser->getConfig();
|
||||
|
||||
require_once "lang/" . $config["language"] . ".php";
|
||||
|
||||
|
|
Reference in a new issue