Add default value for item_title_link option
This commit is contained in:
parent
597c478869
commit
d66fac1b61
@ -242,6 +242,6 @@ return array(
|
||||
'Groups' => 'Libellés',
|
||||
'Back to the group' => 'Revenir sur le groupe',
|
||||
'view' => 'voir',
|
||||
// 'Item title links to' => '',
|
||||
// 'Original' => ''
|
||||
'Item title links to' => 'Le titre des articles redirige vers',
|
||||
'Original' => 'Original'
|
||||
);
|
||||
|
@ -5,7 +5,13 @@ namespace Schema;
|
||||
use PDO;
|
||||
use Model\Config;
|
||||
|
||||
const VERSION = 43;
|
||||
const VERSION = 44;
|
||||
|
||||
|
||||
function version_44(PDO $pdo)
|
||||
{
|
||||
$pdo->exec('INSERT INTO settings ("key", "value") VALUES ("item_title_link", "full")');
|
||||
}
|
||||
|
||||
function version_43(PDO $pdo)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user