mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-12 14:09:19 +01:00
update
This commit is contained in:
parent
996ae97971
commit
0349874425
@ -48,9 +48,14 @@
|
|||||||
|
|
||||||
function list_groups()
|
function list_groups()
|
||||||
{
|
{
|
||||||
if ($GLOBALS['phpgw']->acl->check('group_access',1,'admin'))
|
if ($_POST['done'] || $GLOBALS['phpgw']->acl->check('group_access',1,'admin'))
|
||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.mainscreen'));
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uimainscreen.mainscreen');
|
||||||
|
}
|
||||||
|
|
||||||
|
if($_POST['add'])
|
||||||
|
{
|
||||||
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uiaccounts.edit_group');
|
||||||
}
|
}
|
||||||
|
|
||||||
$query = (isset($_POST['query'])?$_POST['query']:'');
|
$query = (isset($_POST['query'])?$_POST['query']:'');
|
||||||
@ -109,10 +114,9 @@
|
|||||||
(
|
(
|
||||||
'lang_add' => lang('add'),
|
'lang_add' => lang('add'),
|
||||||
'lang_add_statustext' => lang('add a group'),
|
'lang_add_statustext' => lang('add a group'),
|
||||||
'add_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.edit_group'),
|
'action_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'),
|
||||||
'lang_done' => lang('done'),
|
'lang_done' => lang('done'),
|
||||||
'lang_done_statustext' => lang('return to admin mainscreen'),
|
'lang_done_statustext' => lang('return to admin mainscreen'),
|
||||||
'done_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.mainscreen'),
|
|
||||||
'add_access' => ($this->bo->check_rights('add')?'yes':''),
|
'add_access' => ($this->bo->check_rights('add')?'yes':''),
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -139,9 +143,14 @@
|
|||||||
|
|
||||||
function list_users($param_cd='')
|
function list_users($param_cd='')
|
||||||
{
|
{
|
||||||
if ($GLOBALS['phpgw']->acl->check('account_access',1,'admin'))
|
if ($_POST['done'] || $GLOBALS['phpgw']->acl->check('account_access',1,'admin'))
|
||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.mainscreen'));
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uimainscreen.mainscreen');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($_POST['add'])
|
||||||
|
{
|
||||||
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uiaccounts.edit_user');
|
||||||
}
|
}
|
||||||
|
|
||||||
if($param_cd)
|
if($param_cd)
|
||||||
@ -244,10 +253,9 @@
|
|||||||
(
|
(
|
||||||
'lang_add' => lang('add'),
|
'lang_add' => lang('add'),
|
||||||
'lang_add_statustext' => lang('add a user'),
|
'lang_add_statustext' => lang('add a user'),
|
||||||
'add_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.edit_user'),
|
'action_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_users'),
|
||||||
'lang_done' => lang('done'),
|
'lang_done' => lang('done'),
|
||||||
'lang_done_statustext' => lang('return to admin mainscreen'),
|
'lang_done_statustext' => lang('return to admin mainscreen'),
|
||||||
'done_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.mainscreen'),
|
|
||||||
'add_access' => ($this->bo->check_rights('add','account_access')?'yes':''),
|
'add_access' => ($this->bo->check_rights('add','account_access')?'yes':''),
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -307,21 +315,14 @@
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
$this->bo->add_group($values);
|
$this->bo->add_group($values);
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uiaccounts.list_groups');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$account_id && $GLOBALS['phpgw']->acl->check('group_access',4,'admin'))
|
if ($values['cancel'] || (!$account_id && $GLOBALS['phpgw']->acl->check('group_access',4,'admin')) || ($account_id && $GLOBALS['phpgw']->acl->check('group_access',16,'admin')))
|
||||||
{
|
{
|
||||||
$this->list_groups();
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uiaccounts.list_groups');
|
||||||
return False;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($account_id && $GLOBALS['phpgw']->acl->check('group_access',16,'admin'))
|
|
||||||
{
|
|
||||||
$this->list_groups();
|
|
||||||
return False;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$cdid = $cd;
|
$cdid = $cd;
|
||||||
@ -446,7 +447,6 @@
|
|||||||
$data = array
|
$data = array
|
||||||
(
|
(
|
||||||
'edit_url' => $GLOBALS['phpgw']->link('/index.php',$link_data),
|
'edit_url' => $GLOBALS['phpgw']->link('/index.php',$link_data),
|
||||||
'cancel_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'),
|
|
||||||
'account_id' => $group_info['account_id'],
|
'account_id' => $group_info['account_id'],
|
||||||
'lang_account_name' => lang('group name'),
|
'lang_account_name' => lang('group name'),
|
||||||
'value_account_name' => $group_info['account_name'],
|
'value_account_name' => $group_info['account_name'],
|
||||||
@ -888,17 +888,15 @@
|
|||||||
{
|
{
|
||||||
$account_id = get_var('account_id',array('POST','GET'));
|
$account_id = get_var('account_id',array('POST','GET'));
|
||||||
|
|
||||||
if ($GLOBALS['phpgw']->acl->check('group_access',32,'admin'))
|
if ($_POST['cancel'] || $GLOBALS['phpgw']->acl->check('group_access',32,'admin'))
|
||||||
{
|
{
|
||||||
$this->list_groups();
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uiaccounts.list_groups');
|
||||||
return False;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($account_id && get_var('confirm',array('POST')))
|
if ($account_id && $_POST['delete'])
|
||||||
{
|
{
|
||||||
$this->bo->delete_group($account_id);
|
$this->bo->delete_group($account_id);
|
||||||
$this->list_groups();
|
$GLOBALS['phpgw']->redirect_link('/index.php','menuaction=admin.uiaccounts.list_groups');
|
||||||
return False;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 'app_delete'));
|
$GLOBALS['phpgw']->xslttpl->add_file(array('app_data',$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi','default') . SEP . 'app_delete'));
|
||||||
@ -907,12 +905,11 @@
|
|||||||
$data = array
|
$data = array
|
||||||
(
|
(
|
||||||
'delete_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.delete_group&account_id=' . $account_id),
|
'delete_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.delete_group&account_id=' . $account_id),
|
||||||
'done_url' => $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'),
|
'lang_delete' => lang('delete'),
|
||||||
'lang_yes' => lang('Yes'),
|
'lang_cancel' => lang('cancel'),
|
||||||
'lang_no' => lang('No'),
|
'lang_delete_statustext' => lang('delete the group'),
|
||||||
'lang_yes_statustext' => lang('Delete the entry'),
|
'lang_cancel_statustext' => lang('Leave the group untouched and return back to the list'),
|
||||||
'lang_no_statustext' => lang('Back to the list'),
|
'lang_delete_msg' => lang('are you sure you want to delete this group ?')
|
||||||
'lang_error_msg' => lang('are you sure you want to delete this group ?')
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$old_group_list = $GLOBALS['phpgw']->acl->get_ids_for_location(intval($account_id),1,'phpgw_group');
|
$old_group_list = $GLOBALS['phpgw']->acl->get_ids_for_location(intval($account_id),1,'phpgw_group');
|
||||||
|
@ -83,13 +83,13 @@
|
|||||||
<!-- BEGIN group_add -->
|
<!-- BEGIN group_add -->
|
||||||
|
|
||||||
<xsl:template match="group_add">
|
<xsl:template match="group_add">
|
||||||
<tr>
|
<tr height="50">
|
||||||
<td height="50" valign="bottom">
|
<xsl:variable name="action_url"><xsl:value-of select="action_url"/></xsl:variable>
|
||||||
|
<form method="post" action="{$action_url}">
|
||||||
|
<td valign="bottom">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="add_access = 'yes'">
|
<xsl:when test="add_access = 'yes'">
|
||||||
<xsl:variable name="add_url"><xsl:value-of select="add_url"/></xsl:variable>
|
|
||||||
<xsl:variable name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
|
<xsl:variable name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
|
||||||
<form method="post" action="{$add_url}">
|
|
||||||
<input type="submit" name="add" value="{$lang_add}" onMouseout="window.status='';return true;">
|
<input type="submit" name="add" value="{$lang_add}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
@ -97,16 +97,11 @@
|
|||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</input>
|
</input>
|
||||||
</form>
|
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td align="right" valign="bottom" colspan="2">
|
||||||
<tr>
|
|
||||||
<td height="50" valign="bottom">
|
|
||||||
<xsl:variable name="done_url"><xsl:value-of select="done_url"/></xsl:variable>
|
|
||||||
<xsl:variable name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
|
<xsl:variable name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
|
||||||
<form method="post" action="{$done_url}">
|
|
||||||
<input type="submit" name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
|
<input type="submit" name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
@ -114,8 +109,8 @@
|
|||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</input>
|
</input>
|
||||||
</form>
|
|
||||||
</td>
|
</td>
|
||||||
|
</form>
|
||||||
</tr>
|
</tr>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
@ -176,21 +171,16 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" align="left">
|
<td>
|
||||||
<xsl:variable name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
|
<xsl:variable name="lang_save"><xsl:value-of select="lang_save"/></xsl:variable>
|
||||||
<input type="submit" name="values[save]" value="{$lang_save}"/>
|
<input type="submit" name="values[save]" value="{$lang_save}"/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td align="right">
|
||||||
</form>
|
|
||||||
<tr>
|
|
||||||
<xsl:variable name="cancel_url"><xsl:value-of select="cancel_url"/></xsl:variable>
|
|
||||||
<xsl:variable name="lang_cancel"><xsl:value-of select="lang_cancel"/></xsl:variable>
|
<xsl:variable name="lang_cancel"><xsl:value-of select="lang_cancel"/></xsl:variable>
|
||||||
<form method="POST" action="{$cancel_url}">
|
<input type="submit" name="values[cancel]" value="{$lang_cancel}"/>
|
||||||
<td align="left">
|
|
||||||
<input type="submit" name="cancel" value="{$lang_cancel}"/>
|
|
||||||
</td>
|
</td>
|
||||||
</form>
|
|
||||||
</tr>
|
</tr>
|
||||||
|
</form>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -95,13 +95,13 @@
|
|||||||
<!-- BEGIN user_add -->
|
<!-- BEGIN user_add -->
|
||||||
|
|
||||||
<xsl:template match="user_add">
|
<xsl:template match="user_add">
|
||||||
<tr>
|
<tr height="50">
|
||||||
<td height="50" valign="bottom">
|
<xsl:variable name="action_url"><xsl:value-of select="action_url"/></xsl:variable>
|
||||||
|
<form method="post" action="{$action_url}">
|
||||||
|
<td valign="bottom" colspan="3">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="add_access = 'yes'">
|
<xsl:when test="add_access = 'yes'">
|
||||||
<xsl:variable name="add_url"><xsl:value-of select="add_url"/></xsl:variable>
|
|
||||||
<xsl:variable name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
|
<xsl:variable name="lang_add"><xsl:value-of select="lang_add"/></xsl:variable>
|
||||||
<form method="post" action="{$add_url}">
|
|
||||||
<input type="submit" name="add" value="{$lang_add}" onMouseout="window.status='';return true;">
|
<input type="submit" name="add" value="{$lang_add}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
@ -109,16 +109,11 @@
|
|||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</input>
|
</input>
|
||||||
</form>
|
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
<td align="right" valign="bottom" colspan="3">
|
||||||
<tr>
|
|
||||||
<td height="50" valign="bottom">
|
|
||||||
<xsl:variable name="done_url"><xsl:value-of select="done_url"/></xsl:variable>
|
|
||||||
<xsl:variable name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
|
<xsl:variable name="lang_done"><xsl:value-of select="lang_done"/></xsl:variable>
|
||||||
<form method="post" action="{$done_url}">
|
|
||||||
<input type="submit" name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
|
<input type="submit" name="done" value="{$lang_done}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
@ -126,8 +121,8 @@
|
|||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</input>
|
</input>
|
||||||
</form>
|
|
||||||
</td>
|
</td>
|
||||||
|
</form>
|
||||||
</tr>
|
</tr>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</xsl:when>
|
</xsl:when>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" colspan="2" class="row_on"><xsl:value-of select="lang_confirm_msg"/></td>
|
<td align="center" colspan="2" class="row_on"><xsl:value-of select="lang_delete_msg"/></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<!-- delete sub -->
|
<!-- delete sub -->
|
||||||
@ -74,30 +74,29 @@
|
|||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
|
||||||
<xsl:variable name="delete_url"><xsl:value-of select="delete_url"/></xsl:variable>
|
<xsl:variable name="delete_url"><xsl:value-of select="delete_url"/></xsl:variable>
|
||||||
<xsl:variable name="lang_yes"><xsl:value-of select="lang_yes"/></xsl:variable>
|
|
||||||
<form method="POST" action="{$delete_url}">
|
<form method="POST" action="{$delete_url}">
|
||||||
<input type="submit" name="confirm" value="{$lang_yes}" onMouseout="window.status='';return true;">
|
<td>
|
||||||
|
<xsl:variable name="lang_delete"><xsl:value-of select="lang_delete"/></xsl:variable>
|
||||||
|
<input type="submit" name="delete" value="{$lang_delete}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
<xsl:value-of select="lang_yes_statustext"/>
|
<xsl:value-of select="lang_yes_statustext"/>
|
||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</input>
|
</input>
|
||||||
</form>
|
|
||||||
</td>
|
</td>
|
||||||
<td align="right">
|
<td align="right">
|
||||||
<xsl:variable name="done_url"><xsl:value-of select="done_url"/></xsl:variable>
|
<xsl:variable name="lang_cancel"><xsl:value-of select="lang_cancel"/></xsl:variable>
|
||||||
<a href="{$done_url}" onMouseout="window.status='';return true;">
|
<input type="submit" name="cancel" value="{$lang_cancel}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
<xsl:value-of select="lang_no_statustext"/>
|
<xsl:value-of select="lang_cancel_statustext"/>
|
||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
<xsl:value-of select="lang_no"/>
|
</input>
|
||||||
</a>
|
|
||||||
</td>
|
</td>
|
||||||
|
</form>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
@ -8,15 +8,19 @@
|
|||||||
<table cellpadding="2" cellspacing="0" align="center" class="msgbox">
|
<table cellpadding="2" cellspacing="0" align="center" class="msgbox">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" valign="middle">
|
<td align="center" valign="middle">
|
||||||
|
<xsl:choose>
|
||||||
|
<xsl:when test="msgbox_img != ''">
|
||||||
<xsl:variable name="msgbox_img"><xsl:value-of select="msgbox_img"/></xsl:variable>
|
<xsl:variable name="msgbox_img"><xsl:value-of select="msgbox_img"/></xsl:variable>
|
||||||
<xsl:variable name="msgbox_img_alt"><xsl:value-of select="msgbox_img_alt"/></xsl:variable>
|
<xsl:variable name="msgbox_img_alt"><xsl:value-of select="msgbox_img_alt"/></xsl:variable>
|
||||||
<img src="{$msgbox_img}" alt="{$msgbox_img_alt}" onMouseout="window.status='';return true;">
|
<img src="{$msgbox_img}" alt="{$msgbox_img_alt}" title="{$msgbox_img_alt}" onMouseout="window.status='';return true;">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
<xsl:value-of select="lang_msgbox_statustext"/>
|
<xsl:value-of select="lang_msgbox_statustext"/>
|
||||||
<xsl:text>'; return true;</xsl:text>
|
<xsl:text>'; return true;</xsl:text>
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</img><xsl:text> </xsl:text>
|
</img><xsl:text> </xsl:text>
|
||||||
|
</xsl:when>
|
||||||
|
</xsl:choose>
|
||||||
<xsl:value-of disable-output-escaping="yes" select="msgbox_text"/>
|
<xsl:value-of disable-output-escaping="yes" select="msgbox_text"/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
<td align="center" valign="bottom" class="bottom">
|
<td align="center" valign="bottom" class="bottom">
|
||||||
<!-- BEGIN bottom_part -->
|
<!-- BEGIN bottom_part -->
|
||||||
<xsl:value-of select="lang_powered_by"/>
|
<xsl:value-of select="lang_powered_by"/>
|
||||||
<a href="http://www.phpgroupware.org" target="blank" onMouseout="window.status='';return true;">
|
<a href="http://www.phpgroupware.org" target="blank" onMouseout="window.status='';return true;" class="bottom">
|
||||||
<xsl:attribute name="onMouseover">
|
<xsl:attribute name="onMouseover">
|
||||||
<xsl:text>window.status='</xsl:text>
|
<xsl:text>window.status='</xsl:text>
|
||||||
<xsl:value-of select="lang_phpgw_statustext"/>
|
<xsl:value-of select="lang_phpgw_statustext"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user