mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-08 04:22:40 +00:00
Adding fix to allow Configure::write('debug', '0'); in a controller method
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4248 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
cdfeca6f20
commit
658ab33959
1 changed files with 6 additions and 6 deletions
|
@ -266,7 +266,7 @@ class DboSource extends DataSource {
|
|||
$this->error = $this->lastError();
|
||||
$this->numRows = $this->lastNumRows($this->_result);
|
||||
|
||||
if($this->fullDebug) {
|
||||
if($this->fullDebug && Configure::read() > 1) {
|
||||
$this->logQuery($sql);
|
||||
}
|
||||
|
||||
|
@ -395,7 +395,7 @@ class DboSource extends DataSource {
|
|||
foreach($log as $k => $i) {
|
||||
print ("<tr><td>" . ($k + 1) . "</td><td>{$i['query']}</td><td>{$i['error']}</td><td style = \"text-align: right\">{$i['affected']}</td><td style = \"text-align: right\">{$i['numRows']}</td><td style = \"text-align: right\">{$i['took']}</td></tr>\n");
|
||||
}
|
||||
print ("</table>\n");
|
||||
print ("</tbody></table>\n");
|
||||
} else {
|
||||
foreach($log as $k => $i) {
|
||||
print (($k + 1) . ". {$i['query']} {$i['error']}\n");
|
||||
|
@ -432,11 +432,11 @@ class DboSource extends DataSource {
|
|||
*/
|
||||
function showQuery($sql) {
|
||||
$error = $this->error;
|
||||
if (strlen($sql) > 200 && !$this->fullDebug) {
|
||||
if (strlen($sql) > 200 && !$this->fullDebug && Configure::read() > 1) {
|
||||
$sql = substr($sql, 0, 200) . '[...]';
|
||||
}
|
||||
|
||||
if ($this->debug || $error) {
|
||||
if (($this->debug && Configure::read() > 0) || $error) {
|
||||
print ("<p style = \"text-align:left\"><b>Query:</b> {$sql} <small>[Aff:{$this->affected} Num:{$this->numRows} Took:{$this->took}ms]</small>");
|
||||
if ($error) {
|
||||
print ("<br /><span style = \"color:Red;text-align:left\"><b>ERROR:</b> {$this->error}</span>");
|
||||
|
@ -1544,7 +1544,7 @@ class DboSource extends DataSource {
|
|||
*
|
||||
*/
|
||||
function close() {
|
||||
if ($this->fullDebug) {
|
||||
if ($this->fullDebug && Configure::read() > 1) {
|
||||
$this->showLog();
|
||||
}
|
||||
$this->disconnect();
|
||||
|
@ -1621,4 +1621,4 @@ class DboSource extends DataSource {
|
|||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue