1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Notice removal and small gui fixes

This commit is contained in:
CaMer0n
2009-12-25 23:32:18 +00:00
parent 020290cce8
commit 4f86a090dc
4 changed files with 16 additions and 10 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/infopanel.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/includes/infopanel.php,v $
| $Revision: 1.19 $ | $Revision: 1.20 $
| $Date: 2009-12-24 10:51:23 $ | $Date: 2009-12-25 23:32:18 $
| $Author: e107coders $ | $Author: e107coders $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -167,7 +167,7 @@ $text .= "
{ {
$id = $frm->name2id('core-infopanel_'.$val); $id = $frm->name2id('core-infopanel_'.$val);
$text .= " $text .= "
<div id='".$id."' class='f-left' style='width:24.5%' > <div id='".$id."' class='f-left' style='width:49%' >
<div class='left' style='border:1px solid silver;margin:10px'> <div class='left' style='border:1px solid silver;margin:10px'>
"; ";
$text .= $tp->parseTemplate("{PLUGIN=$val|TRUE}"); $text .= $tp->parseTemplate("{PLUGIN=$val|TRUE}");

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/update_routines.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/update_routines.php,v $
| $Revision: 1.72 $ | $Revision: 1.73 $
| $Date: 2009-12-15 11:51:02 $ | $Date: 2009-12-25 23:32:18 $
| $Author: e107coders $ | $Author: e107coders $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -869,6 +869,11 @@ function core_media_import($cat,$epath)
{ {
if(!vartrue($cat)){ return;} if(!vartrue($cat)){ return;}
if(!is_readable($path))
{
return;
}
$fl = e107::getFile(); $fl = e107::getFile();
$tp = e107::getParser(); $tp = e107::getParser();
$sql = e107::getDb(); $sql = e107::getDb();

View File

@@ -9,8 +9,8 @@
* Form Handler * Form Handler
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
* $Revision: 1.106 $ * $Revision: 1.107 $
* $Date: 2009-12-25 02:06:31 $ * $Date: 2009-12-25 23:32:18 $
* $Author: e107coders $ * $Author: e107coders $
* *
*/ */
@@ -1308,9 +1308,9 @@ class e_form
if(is_string($parms)) parse_str($parms, $parms); if(is_string($parms)) parse_str($parms, $parms);
if(vartrue($attributes['readonly'])) // quick fix (maybe 'noedit'=>'readonly'?) if(vartrue($attributes['readonly']) && vartrue($value)) // quick fix (maybe 'noedit'=>'readonly'?)
{ {
return $this->renderValue($key, $value, $attributes); return $this->renderValue($key, $value, $attributes).$this->hidden($key, $value); //
} }
switch($attributes['type']) switch($attributes['type'])

View File

@@ -398,6 +398,7 @@ img.S16 { width: 16px; height: 16px }
img.S32 { width: 32px; height: 32px } img.S32 { width: 32px; height: 32px }
img.S64 { width: 64px; height: 64px } img.S64 { width: 64px; height: 64px }
img.S128 { width: 128px; height: 128px } img.S128 { width: 128px; height: 128px }
img.edit { margin-right: 5px }
/*******************************************************************************************************************/ /*******************************************************************************************************************/
/******** Decorate JS */ /******** Decorate JS */