db statement debugging

This commit is contained in:
redmatrix 2016-06-22 19:08:59 -07:00
parent ec8091a102
commit 1267d995ef
3 changed files with 8 additions and 6 deletions

View File

@ -62,7 +62,7 @@ class Photo extends \Zotlabs\Web\Controller {
intval($uid), intval($uid),
intval(PHOTO_PROFILE) intval(PHOTO_PROFILE)
); );
if(count($r)) { if($r) {
$data = dbunescbin($r[0]['content']); $data = dbunescbin($r[0]['content']);
$mimetype = $r[0]['mimetype']; $mimetype = $r[0]['mimetype'];
} }
@ -79,7 +79,7 @@ class Photo extends \Zotlabs\Web\Controller {
* Other photos * Other photos
*/ */
/* Check for a cookie to indicate display pixel density, in order to detect high-resolution /* Check for a cookie to indicate display pixel density, in order to detect high-resolution
displays. This procedure was derived from the "Retina Images" by Jeremey Worboys, displays. This procedure was derived from the "Retina Images" by Jeremey Worboys,
used in accordance with the Creative Commons Attribution 3.0 Unported License. used in accordance with the Creative Commons Attribution 3.0 Unported License.
Project link: https://github.com/Retina-Images/Retina-Images Project link: https://github.com/Retina-Images/Retina-Images

View File

@ -23,12 +23,11 @@ class Profile_photo extends \Zotlabs\Web\Controller {
/* @brief Initalize the profile-photo edit view /* @brief Initalize the profile-photo edit view
* *
* @param $a Current application
* @return void * @return void
* *
*/ */
function init() { function init() {
if(! local_channel()) { if(! local_channel()) {
return; return;
@ -46,7 +45,7 @@ class Profile_photo extends \Zotlabs\Web\Controller {
* *
*/ */
function post() { function post() {
if(! local_channel()) { if(! local_channel()) {
return; return;

View File

@ -90,7 +90,7 @@ abstract class dba_driver {
protected $db; protected $db;
protected $pdo = array(); protected $pdo = array();
public $debug = 0; public $debug = 0;
public $connected = false; public $connected = false;
public $error = false; public $error = false;
@ -332,6 +332,9 @@ function q($sql) {
else else
db_logger('dba: vsprintf error: ' . print_r(debug_backtrace(), true),LOGGER_NORMAL,LOG_CRIT); db_logger('dba: vsprintf error: ' . print_r(debug_backtrace(), true),LOGGER_NORMAL,LOG_CRIT);
} }
if(\DBA::$dba->debug)
db_logger('Sql: ' . $stmt, LOGGER_DEBUG, LOG_INFO);
return \DBA::$dba->q($stmt); return \DBA::$dba->q($stmt);
} }