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

index 172da6758ccaa217638d18b7fd8f9ce1861f9924..1bb16ff7402db2848bd46537346775263a0e7a3e 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.7 2005/02/01 16:41:19 chriskl Exp $
  */
 
 include_once('./classes/database/ADODB_base.php');
@@ -87,3 +87,5 @@ class Connection {
                        return pg_last_error($this->conn->_connectionID);
        }
 }
+
+?>
index db1f6f10ad9390bec4f9a1df7bacc9eb4ce21e7a..9d6b13c1ce4f4da7c472269a2357a2e5617c3dd2 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * PostgreSQL 8.0 support
  *
- * $Id: Postgres80.php,v 1.8 2004/11/29 01:48:39 chriskl Exp $
+ * $Id: Postgres80.php,v 1.9 2005/02/01 16:41:19 chriskl Exp $
  */
 
 include_once('./classes/database/Postgres74.php');
@@ -450,3 +450,5 @@ class Postgres80 extends Postgres74 {
        function hasNamedParams() { return true; }
        
 }
+
+?>