Changeset:
a249e4325e0f
https://sourceforge.net/p/mrbs/hg-code/ci/a249e4325e0f280cfa7c2ab7c74be8ac6be29251
Author:
John Beranek <[email protected]>
Date:
Sat Sep 24 22:17:53 2016 +0100
Log message:
Added missing 'use' statements in sub-classes
diffstat:
web/lib/MRBS/DB_mysql.php | 3 +++
web/lib/MRBS/DB_pgsql.php | 3 +++
2 files changed, 6 insertions(+), 0 deletions(-)
diffs (26 lines):
diff -r 39ee8419bb34 -r a249e4325e0f web/lib/MRBS/DB_mysql.php
--- a/web/lib/MRBS/DB_mysql.php Sat Sep 24 21:34:03 2016 +0100
+++ b/web/lib/MRBS/DB_mysql.php Sat Sep 24 22:17:53 2016 +0100
@@ -2,6 +2,9 @@
namespace MRBS;
+use PDO;
+use PDOException;
+
//
class DB_mysql extends DB
{
diff -r 39ee8419bb34 -r a249e4325e0f web/lib/MRBS/DB_pgsql.php
--- a/web/lib/MRBS/DB_pgsql.php Sat Sep 24 21:34:03 2016 +0100
+++ b/web/lib/MRBS/DB_pgsql.php Sat Sep 24 22:17:53 2016 +0100
@@ -2,6 +2,9 @@
namespace MRBS;
+use PDO;
+use PDOException;
+
//
class DB_pgsql extends DB
{
------------------------------------------------------------------------------
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits