backport: add missing PHP end tags. weird
authorchriskl <chriskl>
Tue, 1 Feb 2005 16:49:02 +0000 (16:49 +0000)
committerchriskl <chriskl>
Tue, 1 Feb 2005 16:49:02 +0000 (16:49 +0000)
classes/database/Connection.php
classes/database/Postgres80.php

index 172da6758ccaa217638d18b7fd8f9ce1861f9924..4293f5f14c5aef9020f16be34c859287a12416bd 100755 (executable)
@@ -3,7 +3,7 @@
 /**
  * Class to represent a database connection
  *
- * $Id: Connection.php,v 1.6 2004/08/05 01:44:13 chriskl Exp $
+ * $Id: Connection.php,v 1.6.2.1 2005/02/01 16:49:02 chriskl Exp $
  */
 
 include_once('./classes/database/ADODB_base.php');
@@ -87,3 +87,5 @@ class Connection {
                        return pg_last_error($this->conn->_connectionID);
        }
 }
+
+?>
index 1652bad23c72874fd08a27c4acb28706a3752936..5e106509ddff490d0ef97c54e476df191aec98eb 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * PostgreSQL 8.0 support
  *
- * $Id: Postgres80.php,v 1.7.2.1 2004/11/29 04:52:45 chriskl Exp $
+ * $Id: Postgres80.php,v 1.7.2.2 2005/02/01 16:49:02 chriskl Exp $
  */
 
 include_once('./classes/database/Postgres74.php');
@@ -450,3 +450,5 @@ class Postgres80 extends Postgres74 {
        function hasNamedParams() { return true; }
        
 }
+
+?>