Aleksander Machniak
2013-02-19 9e46fb535ddce461a11f57d4ce75a43c3ad651e8
Fix typo in DB version strings (there should be no .sql suffix)
5 files modified
10 ■■■■ changed files
SQL/mssql.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/mysql.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/postgres.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/sqlite.initial.sql 2 ●●● patch | view | raw | blame | history
bin/updatedb.sh 2 ●●● patch | view | raw | blame | history
SQL/mssql.initial.sql
@@ -371,6 +371,6 @@
    WHERE [contact_id] IN (SELECT [contact_id] FROM deleted)
GO
INSERT INTO [dbo].[system] ([name], [value]) VALUES ('roundcube-version', '2013011700.sql')
INSERT INTO [dbo].[system] ([name], [value]) VALUES ('roundcube-version', '2013011700')
GO
SQL/mysql.initial.sql
@@ -196,4 +196,4 @@
/*!40014 SET FOREIGN_KEY_CHECKS=1 */;
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700.sql');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700');
SQL/postgres.initial.sql
@@ -274,4 +274,4 @@
    value text
);
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700.sql');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700');
SQL/sqlite.initial.sql
@@ -209,4 +209,4 @@
  value text NOT NULL
);
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700.sql');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2013011700');
bin/updatedb.sh
@@ -63,7 +63,7 @@
        $opts['package'] . '-version');
    $row     = $DB->fetch_array();
    $version = $row[0];
    $version = preg_replace('/[^0-9]/', '', $row[0]);
}
// DB version not found, but release version is specified