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:
@@ -11,8 +11,8 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/infopanel.php,v $
|
||||
| $Revision: 1.19 $
|
||||
| $Date: 2009-12-24 10:51:23 $
|
||||
| $Revision: 1.20 $
|
||||
| $Date: 2009-12-25 23:32:18 $
|
||||
| $Author: e107coders $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
@@ -167,7 +167,7 @@ $text .= "
|
||||
{
|
||||
$id = $frm->name2id('core-infopanel_'.$val);
|
||||
$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'>
|
||||
";
|
||||
$text .= $tp->parseTemplate("{PLUGIN=$val|TRUE}");
|
||||
|
@@ -11,8 +11,8 @@
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_admin/update_routines.php,v $
|
||||
| $Revision: 1.72 $
|
||||
| $Date: 2009-12-15 11:51:02 $
|
||||
| $Revision: 1.73 $
|
||||
| $Date: 2009-12-25 23:32:18 $
|
||||
| $Author: e107coders $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
@@ -869,6 +869,11 @@ function core_media_import($cat,$epath)
|
||||
{
|
||||
if(!vartrue($cat)){ return;}
|
||||
|
||||
if(!is_readable($path))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$fl = e107::getFile();
|
||||
$tp = e107::getParser();
|
||||
$sql = e107::getDb();
|
||||
|
@@ -9,8 +9,8 @@
|
||||
* Form Handler
|
||||
*
|
||||
* $Source: /cvs_backup/e107_0.8/e107_handlers/form_handler.php,v $
|
||||
* $Revision: 1.106 $
|
||||
* $Date: 2009-12-25 02:06:31 $
|
||||
* $Revision: 1.107 $
|
||||
* $Date: 2009-12-25 23:32:18 $
|
||||
* $Author: e107coders $
|
||||
*
|
||||
*/
|
||||
@@ -1308,9 +1308,9 @@ class e_form
|
||||
|
||||
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'])
|
||||
@@ -1369,7 +1369,7 @@ class e_form
|
||||
{
|
||||
return $this->hidden($key, $value);
|
||||
}
|
||||
|
||||
|
||||
return $this->datepicker($key, $value, $parms);
|
||||
break;
|
||||
|
||||
|
@@ -398,6 +398,7 @@ img.S16 { width: 16px; height: 16px }
|
||||
img.S32 { width: 32px; height: 32px }
|
||||
img.S64 { width: 64px; height: 64px }
|
||||
img.S128 { width: 128px; height: 128px }
|
||||
img.edit { margin-right: 5px }
|
||||
/*******************************************************************************************************************/
|
||||
|
||||
/******** Decorate JS */
|
||||
|
Reference in New Issue
Block a user