Fix problem with plpgsql code

This commit is contained in:
sparkyx 2007-04-12 23:33:46 +00:00
parent 17878a1763
commit 830e00fcf5
2 changed files with 39 additions and 0 deletions

View file

@ -500,6 +500,10 @@ if ( DEBUG=='false' ) ob_start();
ExecuteScript($db,'sql/patch/upgrade25.sql');
} // version
if ( GetVersion($db) == 26 ) {
ExecuteScript($db,'sql/patch/upgrade26.sql');
} // version
if ( DEBUG == 'false') ob_end_clean();
}//for
@ -612,6 +616,10 @@ if (DEBUG == 'false' ) ob_start();
ExecuteScript($db,'sql/patch/upgrade25.sql');
} // version
if ( GetVersion($db) == 26 ) {
ExecuteScript($db,'sql/patch/upgrade26.sql');
} // version
if ( DEBUG == 'false') ob_end_clean();
}