Commit a659163e authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Minor fix.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3653 b35dd754-fafc-0310-a699-88a17e54d16e
parent 5a6409d8
......@@ -886,7 +886,7 @@ public class DbConnectionManager {
}
// If the version is greater than 6, automatically update the version information.
// Previous to version 6, the upgrade scripts set the version themselves.
if (version > 6) {
if (version >= 6) {
stmt = con.createStatement();
stmt.execute("UPDATE jiveVersion SET version=" + i + " WHERE name='wildfire'");
stmt.close();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment