Skip to content

Commit

Permalink
* Improved installer to forbid using database table prefixes with
Browse files Browse the repository at this point in the history
      special characters
  • Loading branch information
garvinhicking committed May 28, 2014
1 parent 93d117b commit 4471b1a
Show file tree
Hide file tree
Showing 67 changed files with 70 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
Version 2.0-beta3 ()
------------------------------------------------------------------------

* Improved installer to forbid using database table prefixes with
special characters

* Themes using Engines are now able to use the parent's
configuration

Expand Down
2 changes: 2 additions & 0 deletions include/functions_installer.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,8 @@ function serendipity_checkInstallation() {

if (empty($_POST['dbPrefix']) && empty($serendipity['dbPrefix'])) {
$errs[] = sprintf(EMPTY_SETTING, INSTALL_DBPREFIX);
} elseif (!preg_match('@^[a-z0-9_]+$@i', $_POST['dbPrefix'])) {
$errs[] = INSTALL_DBPREFIX_INVALID;
}

$serendipity['dbType'] = $_POST['dbType'];
Expand Down
1 change: 1 addition & 0 deletions lang/UTF-8/plugin_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,4 @@ function help() {
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_bg.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1035,3 +1035,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_cn.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_cs.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1073,3 +1073,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_cz.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1073,3 +1073,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_da.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1042,3 +1042,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_de.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_en.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_es.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1061,3 +1061,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_fa.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_fi.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1043,3 +1043,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_fr.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1050,3 +1050,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_hu.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1041,3 +1041,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_is.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1043,3 +1043,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_it.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1046,3 +1046,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_ja.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_ko.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_nl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_no.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_pl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1041,3 +1041,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_pt.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_pt_PT.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1054,3 +1054,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_ro.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1044,3 +1044,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_ru.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1046,3 +1046,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_sa.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -962,3 +962,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_se.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1043,3 +1043,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_sk.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1033,3 +1033,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_ta.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1042,3 +1042,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_tn.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_tr.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_tw.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1048,3 +1048,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/UTF-8/serendipity_lang_zh.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1043,3 +1043,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
2 changes: 1 addition & 1 deletion lang/addlang.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/plugin_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,4 @@ function help() {
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_bg.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1035,3 +1035,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_cn.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_cs.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1073,3 +1073,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_cz.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1073,3 +1073,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_da.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1042,3 +1042,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_de.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_en.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_es.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1061,3 +1061,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_fa.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_fi.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1043,3 +1043,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_fr.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1050,3 +1050,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_hu.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1041,3 +1041,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_is.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1043,3 +1043,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_it.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1046,3 +1046,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_ja.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1047,3 +1047,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_ko.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
1 change: 1 addition & 0 deletions lang/serendipity_lang_nl.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,3 +1045,4 @@
@define('DEBUG', 'Debug');
@define('CUSTOM_CONFIG', 'Custom configuration file');
@define('PLUGIN_ALREADY_INSTALLED', 'Plugin already installed, and does not support multiple installation ("stackable").');
@define('INSTALL_DBPREFIX_INVALID', 'The database table name prefix must not be empty and may only contain letters, numbers and the underscore character.');
Loading

0 comments on commit 4471b1a

Please sign in to comment.