mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
update delete cats
This commit is contained in:
parent
a8b4146b4e
commit
1e7e23d21c
@ -427,19 +427,27 @@
|
|||||||
|
|
||||||
if ($GLOBALS['HTTP_POST_VARS']['confirm'])
|
if ($GLOBALS['HTTP_POST_VARS']['confirm'])
|
||||||
{
|
{
|
||||||
switch ($GLOBALS['HTTP_POST_VARS']['subs'])
|
if ($GLOBALS['HTTP_POST_VARS']['subs'])
|
||||||
{
|
{
|
||||||
case 'move':
|
switch ($GLOBALS['HTTP_POST_VARS']['subs'])
|
||||||
$this->bo->delete(array('cat_id' => $this->cat_id, 'modify_subs' => True));
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
case 'move':
|
||||||
break;
|
$this->bo->delete(array('cat_id' => $this->cat_id, 'modify_subs' => True));
|
||||||
case 'drop':
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
||||||
$this->bo->delete(array('cat_id' => $this->cat_id, 'drop_subs' => True));
|
break;
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
case 'drop':
|
||||||
break;
|
$this->bo->delete(array('cat_id' => $this->cat_id, 'drop_subs' => True));
|
||||||
default:
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
||||||
$error_msg = lang('Please choose one of the methods to handle the subcategories');
|
break;
|
||||||
break;
|
default:
|
||||||
|
$error_msg = lang('Please choose one of the methods to handle the subcategories');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->bo->delete(array('cat_id' => $this->cat_id));
|
||||||
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -531,19 +531,27 @@
|
|||||||
|
|
||||||
if (get_var('confirm',array('POST')))
|
if (get_var('confirm',array('POST')))
|
||||||
{
|
{
|
||||||
switch (get_var('subs',array('POST')))
|
if (get_var('subs',array('POST')))
|
||||||
{
|
{
|
||||||
case 'move':
|
switch (get_var('subs',array('POST')))
|
||||||
$this->bo->delete(array('cat_id' => $this->cat_id,'modify_subs' => True));
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
case 'move':
|
||||||
break;
|
$this->bo->delete(array('cat_id' => $this->cat_id,'modify_subs' => True));
|
||||||
case 'drop':
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
||||||
$this->bo->delete(array('cat_id' => $this->cat_id,'drop_subs' => True));
|
break;
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
case 'drop':
|
||||||
break;
|
$this->bo->delete(array('cat_id' => $this->cat_id,'drop_subs' => True));
|
||||||
default:
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
||||||
$error_msg = lang('Please choose one of the methods to handle the subcategories');
|
break;
|
||||||
break;
|
default:
|
||||||
|
$error_msg = lang('Please choose one of the methods to handle the subcategories');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->bo->delete(array('cat_id' => $this->cat_id));
|
||||||
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php',$link_data));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user