Commit 70a8be89 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Wildfire would have jiveVersion, not ofVersion. Reverted updateToOpenfire check.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10164 b35dd754-fafc-0310-a699-88a17e54d16e
parent 6fa51d80
......@@ -310,7 +310,7 @@ public class SchemaManager {
private void updateToOpenfire(Connection con){
PreparedStatement pstmt = null;
try {
pstmt = con.prepareStatement("UPDATE ofVersion SET name='openfire' WHERE name='wildfire'");
pstmt = con.prepareStatement("UPDATE jiveVersion SET name='openfire' WHERE name='wildfire'");
pstmt.executeUpdate();
}
catch (Exception ex) {
......
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