summaryrefslogtreecommitdiff
path: root/adodb-lib.inc.php
diff options
context:
space:
mode:
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);
}