summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2018-08-06 14:19:05 +0200
committerDamien Regad <dregad@mantisbt.org>2018-08-06 14:28:51 +0200
commite24413f722f012c25d1f7e6277c25a075a93e3cf (patch)
tree24cc871271ac36fda714ccbf85de936741a11c20 /docs
parente455b112fd534d8d68f81a5909e0f50dd6b201df (diff)
downloadadodb-e24413f722f012c25d1f7e6277c25a075a93e3cf.tar.gz
adodb-e24413f722f012c25d1f7e6277c25a075a93e3cf.tar.bz2
adodb-e24413f722f012c25d1f7e6277c25a075a93e3cf.zip
Fix Sourceforge tracker links
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog.md2
-rw-r--r--docs/changelog_v4.x.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/changelog.md b/docs/changelog.md
index 7037452c..30a6f97e 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -372,7 +372,7 @@ other database types as well; all drivers derived from the above are also impact
- BeginTrans/CommitTrans/RollbackTrans return true/false correctly on success/failure now for mssql, odbc, oci8, mysqlt, mysqli, postgres, pdo.
- Replace() now quotes all non-null values including numeric ones.
- Postgresql qstr() now returns booleans as *true* and *false* without quotes.
-- MetaForeignKeys in mysql and mysqli drivers had this problem: A table can have two foreign keys pointing to the same column in the same table. The original code will incorrectly report only the last column. Fixed. https://sourceforge.net/tracker/index.php?func=detail&aid=2287278&group_id=42718&atid=433976
+- MetaForeignKeys in mysql and mysqli drivers had this problem: A table can have two foreign keys pointing to the same column in the same table. The original code will incorrectly report only the last column. Fixed. https://sourceforge.net/p/adodb/bugs/100/
- Passing in full ado connection string in $argHostname with ado drivers was failing in adodb5 due to bug. Fixed.
- Fixed memcachelib flushcache and flushall bugs. Also fixed possible timeCreated = 0 problem in readcache. (Also in adodb 4.992). Thanks AlexB_UK (alexbarnes#hotmail.com).
- Fixed a notice in adodb-sessions2.inc.php, in _conn(). Thx bober m.derlukiewicz#rocktech.remove_me.pl;
diff --git a/docs/changelog_v4.x.md b/docs/changelog_v4.x.md
index 84bdd8a7..e346921b 100644
--- a/docs/changelog_v4.x.md
+++ b/docs/changelog_v4.x.md
@@ -214,7 +214,7 @@ rs2html($rs2);
- Removed `$off = $fieldOffset - 1` line in db2 driver, FetchField(). Tx Larry Menard.
- Added support for PHP5 objects as Execute() bind parameters using `__toString` (eg. Simple-XML). Thx Carl-Christian Salvesen.
- Rounding in tohtml.inc.php did not work properly. Fixed.
-- MetaIndexes in postgres fails when fields are deleted then added in again because the attnum has gaps in it. See http://sourceforge.net/tracker/index.php?func=detail&aid=1451245&group_id=42718&atid=433976. Fixed.
+- MetaIndexes in postgres fails when fields are deleted then added in again because the attnum has gaps in it. See https://sourceforge.net/p/adodb/bugs/45/. Fixed.
- MetaForeignkeys in mysql and mysqli did not work when fetchMode==ADODB_FETCH_ASSOC used. Fixed.
- Reference error in AutoExecute() fixed.
- Added macaddr postgres type to MetaType. Maps to 'C'.