
It involves how widgets work. Now widgets must always be *registered* to work, even blockparser's. Blockparser has got then a nice GUI to select which pages should be available as widgets; once the page has been enabled it is then available in the main widget panels This solves the non-editable input things with non-firefox browsers: this way you just won't have the editbox anymore :P I hope you'll like the changes. There are many additions in lang files, so be careful to update (otherwise you'll get blank lines)!
39 lines
694 B
PHP
Executable File
39 lines
694 B
PHP
Executable File
<?php
|
|
|
|
$fp_config = array (
|
|
'general' =>
|
|
array (
|
|
'www' => 'http://localhost',
|
|
'title' => 'FlatPress',
|
|
'subtitle' => 'My FlatPress blog',
|
|
'footer' => '',
|
|
'author' => 'FlatPress Team',
|
|
'email' => 'webmaster@localhost.com',
|
|
'startpage' => NULL,
|
|
'maxentries' => '5',
|
|
'notify' => true,
|
|
'theme' => 'leggero',
|
|
'style' => 'leggero',
|
|
'blogid' => 'fpdefid',
|
|
'charset' => 'utf-8',
|
|
),
|
|
'locale' =>
|
|
array (
|
|
'timeoffset' => '2',
|
|
'timeformat' => '%H:%M:%S',
|
|
'dateformat' => '%A, %B %e, %Y',
|
|
'charset' => 'utf-8',
|
|
'lang' => 'en-us',
|
|
),
|
|
'plugins' =>
|
|
array (
|
|
'blockparser' =>
|
|
array (
|
|
'menu',
|
|
'about',
|
|
),
|
|
),
|
|
);
|
|
|
|
?>
|