mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-15 00:12:43 +09:00
issue 2524 if image upload and image delete request with same time, image replaced
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11842 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
99b4a6e926
commit
4de6a321bc
1 changed files with 4 additions and 4 deletions
|
|
@ -509,17 +509,17 @@
|
|||
}
|
||||
|
||||
// Button delete check
|
||||
if($args->isNormalDelete == 'Y')
|
||||
if(!$btnOutput['normal_btn'] && $args->isNormalDelete == 'Y')
|
||||
{
|
||||
$item_info->normal_btn = '';
|
||||
}
|
||||
if($args->isHoverDelete == 'Y')
|
||||
if(!$btnOutput['hover_btn'] && $args->isHoverDelete == 'Y')
|
||||
{
|
||||
$item_info->hover_btn = '';
|
||||
}
|
||||
if($args->isActiveDelete == 'Y')
|
||||
if(!$btnOutput['active_btn'] && $args->isActiveDelete == 'Y')
|
||||
{
|
||||
$item_info->active_btn == '';
|
||||
$item_info->active_btn = '';
|
||||
}
|
||||
|
||||
$output = executeQuery('menu.updateMenuItem', $item_info);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue