mirror of
https://github.com/e107inc/e107.git
synced 2025-04-22 13:41:52 +02:00
Issue #3397 Prefs issue possible fix for some machines and PHP 5.4 fix in image.php.
This commit is contained in:
parent
deeaf51cdf
commit
ad29901d9b
@ -1425,7 +1425,7 @@ class media_admin_ui extends e_admin_ui
|
||||
|
||||
}*/
|
||||
|
||||
$text .= $this->mediaManagerSaveButtons($options);
|
||||
$text .= $this->mediaManagerSaveButtons($options);
|
||||
|
||||
$text .= $this->mediaManagerPlaceholders();
|
||||
|
||||
@ -2014,8 +2014,8 @@ class media_admin_ui extends e_admin_ui
|
||||
|
||||
);
|
||||
|
||||
|
||||
$close = (!empty($this->getQuery('bbcode'))) ? false : true; // only close on 'select' when bbcodes are not in use.
|
||||
$bbcode = $this->getQuery('bbcode');
|
||||
$close = (!empty($bbcode)) ? false : true; // only close on 'select' when bbcodes are not in use.
|
||||
|
||||
|
||||
$items = array();
|
||||
@ -2331,8 +2331,8 @@ class media_admin_ui extends e_admin_ui
|
||||
|
||||
}
|
||||
|
||||
|
||||
$close = (!empty($this->getQuery('bbcode'))) ? false : true; // only close on 'select' when bbcodes are not in use.
|
||||
$bbcode = $this->getQuery('bbcode');
|
||||
$close = (!empty($bbcode)) ? false : true; // only close on 'select' when bbcodes are not in use.
|
||||
|
||||
if(!empty($data))
|
||||
{
|
||||
|
@ -471,7 +471,7 @@ class e_array {
|
||||
return false;
|
||||
}
|
||||
|
||||
if(strpos($ArrayData," => \'") !== false)
|
||||
if(strpos($ArrayData,"0 => \'")!=false)
|
||||
{
|
||||
$ArrayData = stripslashes($ArrayData);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user