summaryrefslogtreecommitdiff
path: root/adodb-lib.inc.php
diff options
context:
space:
mode:
authorMark Newnham <mark@newnhams.com>2020-12-06 16:19:39 -0700
committerMark Newnham <mark@newnhams.com>2020-12-06 16:19:39 -0700
commitd6139ea82559263aa7e6572d8e20ae44af948ea1 (patch)
treec02fca24dd48b93669b759c29a04a413bb00f70c /adodb-lib.inc.php
parent23759df8f1245b03bc14000a76e99616c3d9678e (diff)
downloadadodb-d6139ea82559263aa7e6572d8e20ae44af948ea1.tar.gz
adodb-d6139ea82559263aa7e6572d8e20ae44af948ea1.tar.bz2
adodb-d6139ea82559263aa7e6572d8e20ae44af948ea1.zip
Removed references to phplens.com, see #564
Diffstat (limited to 'adodb-lib.inc.php')
-rw-r--r--adodb-lib.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/adodb-lib.inc.php b/adodb-lib.inc.php
index ecdf9c0d..a30691f7 100644
--- a/adodb-lib.inc.php
+++ b/adodb-lib.inc.php
@@ -169,7 +169,7 @@ function _adodb_replace(&$zthis, $table, $fieldArray, $keyCol, $autoQuote, $has_
if ($rs) {
if ($zthis->poorAffectedRows) {
// The Select count(*) wipes out any errors that the update would have returned.
- // http://phplens.com/lens/lensforum/msgs.php?id=5696
+ // PHPLens Issue No: 5696
if ($zthis->ErrorNo()<>0) return 0;
// affected_rows == 0 if update field values identical to old values
@@ -428,7 +428,7 @@ function _adodb_getcount(&$zthis, $sql,$inputarr=false,$secs2cache=0)
}
// fix by alexander zhukov, alex#unipack.ru, because count(*) and 'order by' fails
// with mssql, access and postgresql. Also a good speedup optimization - skips sorting!
- // also see http://phplens.com/lens/lensforum/msgs.php?id=12752
+ // also see PHPLens Issue No: 12752
$rewritesql = adodb_strip_order_by($rewritesql);
}