1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-22 13:41:52 +02:00

Notice removal etc.

This commit is contained in:
CaMer0n 2012-06-20 07:08:36 +00:00
parent a0743652de
commit b51da4eb8b
4 changed files with 16 additions and 12 deletions
e107_admin
e107_core/bbcodes
e107_handlers
e107_web/css

@ -193,7 +193,7 @@ else
:-moz-placeholder { font-style:italic; color: #bbb; }
h1 { text-align: center; color: #646667; text-transform:uppercase; }
h2 { text-align: center; color: #FAAD3D; text-shadow: #000 1px 1px 1px; }
#username {background: url(".e_IMAGE."admin_images/admins_16.png) no-repeat scroll 7px 7px; padding-left:30px; }
@ -237,7 +237,7 @@ class auth
$text = "<form id='admin-login' method='post' action='".e_SELF."' {$incChap} >
<div id='login-admin' >
<div {$class}>
<h1>".SITENAME." admin area</h1>
<h2>".e_DOMAIN." admin area</h2>
<div class='field'>
<label for='username'>".ADLAN_89."</label>

@ -349,13 +349,13 @@ class bb_youtube extends e_bb_base
<!-- Start YouTube -->
<object class="'.$class.'" width="'.$params['w'].'" height="'.$params['h'].'" >
<param name="movie" value="'.$url.'"></param>
<param name="allowFullScreen" value="'.$fscr.'"></param>
<param name="allowscriptaccess" value="always"></param>
<param name="wmode" value="transparent"></param>
<param name="movie" value="'.$url.'" />
<param name="allowFullScreen" value="'.$fscr.'" />
<param name="allowscriptaccess" value="always" />
<param name="wmode" value="transparent" />
';
// Not XHTML - but needed for compatibility.
$ret .= '<embed class="'.$class.'" src="'.$url.'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="'.$fscr.'" wmode="transparent" width="'.$params['w'].'" height="'.$params['h'].'"></embed>';
$ret .= '<embed class="'.$class.'" src="'.$url.'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="'.$fscr.'" wmode="transparent" width="'.$params['w'].'" height="'.$params['h'].'" />';
$ret .= '</object>';
$ret .= '
<!-- End YouTube -->

@ -224,10 +224,14 @@ class e_jsmanager
if(!$this->libDisabled($id,$vis))
{
// echo "<h2>FRAMEWORK Loaded: ".$id." :: ".$vis."</h2>";
foreach($this->_libraries[$id] as $path)
if(vartrue($this->_libraries[$id]))
{
$core[$path] = $vis;
}
foreach($this->_libraries[$id] as $path)
{
$core[$path] = $vis;
}
}
}
}

@ -137,7 +137,7 @@ div.bbcode { margin: 15px 0px; clear: both; } /* layout control via bbcodes */
.comment-box { padding-bottom:10px; margin-bottom:10px; border-top:1px solid #C0C0C0; }
.comment-box-left { float:left; text-align:center; width:10%; min-width:100px }
.comment-box-left { float:left; text-align:center; width:15%; min-width:100px; max-width:150px }
.comment-box-userinfo { padding:20px 5px 10px 5px; }
@ -162,7 +162,7 @@ img.user-avatar { max-width:128px; -webkit-box-shadow:#CCCCCC 0px 0px 1
.comment-box-right textarea {
margin: 0 auto;
resize: none;
width: 100% !important;
width: auto !important;
}
.comment-status { float:right; font-style: italic }