Update the version returned by wpsql_get_server_info() to '5.0.30'

git-svn-id: https://plugins.svn.wordpress.org/postgresql-for-wordpress/trunk@419541 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
hawk__
2011-08-04 22:24:02 +00:00
parent 7b9a6a8273
commit 254f793473

View File

@ -50,7 +50,7 @@
{ if( $GLOBALS['pg4wp_user'] == '') return pg_last_error(); else return ''; }
function wpsql_fetch_assoc($result) { return pg_fetch_assoc($result); }
function wpsql_escape_string($s) { return pg_escape_string($s); }
function wpsql_get_server_info() { return '4.1.3'; } // Just want to fool wordpress ...
function wpsql_get_server_info() { return '5.0.30'; } // Just want to fool wordpress ...
function wpsql_result($result, $i, $fieldname)
{ return pg_fetch_result($result, $i, $fieldname); }