mirror of
https://github.com/e107inc/e107.git
synced 2025-08-04 13:47:31 +02:00
Debug styling fixes.
This commit is contained in:
@@ -258,6 +258,7 @@ class admin_start
|
|||||||
|
|
||||||
if(!deftrue('e_DEBUG') && $checked === true)
|
if(!deftrue('e_DEBUG') && $checked === true)
|
||||||
{
|
{
|
||||||
|
e107::getMessage()->addDebug("Skipping core update");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -272,7 +273,7 @@ class admin_start
|
|||||||
require_once(e_ADMIN.'update_routines.php');
|
require_once(e_ADMIN.'update_routines.php');
|
||||||
|
|
||||||
e107::getSession()->set('core-update-checked',true);
|
e107::getSession()->set('core-update-checked',true);
|
||||||
|
e107::getMessage()->addDebug("Checking for core updates");
|
||||||
|
|
||||||
if(update_check() === true)
|
if(update_check() === true)
|
||||||
{
|
{
|
||||||
|
@@ -87,6 +87,7 @@ class e107_db_debug {
|
|||||||
if(!empty($str))
|
if(!empty($str))
|
||||||
{
|
{
|
||||||
e107::getRender()->setStyle('debug');
|
e107::getRender()->setStyle('debug');
|
||||||
|
echo $str;
|
||||||
e107::getRender()->tablerender($title, $str);
|
e107::getRender()->tablerender($title, $str);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -138,7 +138,11 @@ class plugin_featurebox_item extends e_model
|
|||||||
return $video;
|
return $video;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(is_string($parm))
|
||||||
|
{
|
||||||
parse_str($parm, $parm);
|
parse_str($parm, $parm);
|
||||||
|
}
|
||||||
|
|
||||||
$tp = e107::getParser();
|
$tp = e107::getParser();
|
||||||
|
|
||||||
$imageSrc = ($parm != 'placeholder') ? $this->get('fb_image') : "";
|
$imageSrc = ($parm != 'placeholder') ? $this->get('fb_image') : "";
|
||||||
|
@@ -55,3 +55,7 @@ ul.breadcrumb li span.divider { padding-left:5px; }
|
|||||||
}
|
}
|
||||||
|
|
||||||
.form-control { max-width:100% }
|
.form-control { max-width:100% }
|
||||||
|
|
||||||
|
.e-debug .table-striped > tbody > tr:nth-of-type(2n+1) {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
}
|
@@ -333,3 +333,5 @@ img.e-emoticon { vertical-align:middle; border:0; width:24px }
|
|||||||
|
|
||||||
#uiAlert { z-index: 10001 }
|
#uiAlert { z-index: 10001 }
|
||||||
#uiAlert .alert { z-index:10000; box-shadow:1px 4px 5px rgba(0,0,0,0.4) }
|
#uiAlert .alert { z-index:10000; box-shadow:1px 4px 5px rgba(0,0,0,0.4) }
|
||||||
|
|
||||||
|
div.e-debug { margin-top:50px; background-color: white }
|
Reference in New Issue
Block a user