diff options
author | dirk <dirk@FreeBSD.org> | 2003-01-30 18:05:54 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2003-01-30 18:05:54 +0800 |
commit | ed1325276c57055e2c23938ba989034bb908a1ac (patch) | |
tree | 5a1b3af1842be69786003011ee685515019868db /deskutils/kronolith/files | |
parent | 63961948c46517cb9c7754b2193951065e1f9f97 (diff) | |
download | freebsd-ports-gnome-ed1325276c57055e2c23938ba989034bb908a1ac.tar.gz freebsd-ports-gnome-ed1325276c57055e2c23938ba989034bb908a1ac.tar.zst freebsd-ports-gnome-ed1325276c57055e2c23938ba989034bb908a1ac.zip |
- fix isWarning
- fix ftp sites
PR: ports/47418
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'deskutils/kronolith/files')
-rw-r--r-- | deskutils/kronolith/files/patch-lib_Driver_sql.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deskutils/kronolith/files/patch-lib_Driver_sql.php b/deskutils/kronolith/files/patch-lib_Driver_sql.php new file mode 100644 index 000000000000..e831d6991901 --- /dev/null +++ b/deskutils/kronolith/files/patch-lib_Driver_sql.php @@ -0,0 +1,11 @@ +--- lib/Driver/sql.php.orig Sat May 18 00:58:16 2002 ++++ lib/Driver/sql.php Mon Dec 23 23:12:46 2002 +@@ -61,7 +61,7 @@ + + /* Connect to the SQL server using the supplied parameters. */ + $this->db = &DB::connect($this->params, true); +- if (DB::isError($this->db) || DB::isWarning($this->db)) { ++ if (DB::isError($this->db)) { + Horde::fatal($this->db, __FILE__, __LINE__); + } + |