Recent Topics

1 Oct 13, 2008 09:46    

My b2evolution Version: Not Entered

uhh.. as you know there 's the

/**
 * Default controller to use.
 *
 * This determines the default page when you access the admin.
 */
$default_ctrl = 'dashboard';

in 2.x series under ../conf/admin.php

but i couldnt find this one in 3.x alpha, pretty sure it's been moved somewhere in backoffice, but i could not find it, does it really exist and i couldnt find it or has it been deprecated ?

2 Oct 14, 2008 16:08

Good question :)

3 Oct 14, 2008 16:13

If you look in blogs/admin.php (3.0) You will find:


param( 'ctrl', '/^[a-z0-9_]+$/', 'dashboard', true );

In 2.4.5, it's:


param( 'ctrl', '/^[a-z0-9_]+$/', $default_ctrl, true );

Looks like the default_controller is not configurable anymore :)

4 Oct 14, 2008 22:59

Walter wrote:

If you look in blogs/admin.php (3.0) You will find:


param( 'ctrl', '/^[a-z0-9_]+$/', 'dashboard', true );

In 2.4.5, it's:


param( 'ctrl', '/^[a-z0-9_]+$/', $default_ctrl, true );

Looks like the default_controller is not configurable anymore :)

shoot :(

5 Oct 17, 2008 11:12

It would be interesting to know why it has been removed. :)


Form is loading...