mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
update cats
This commit is contained in:
parent
cf343ac9d6
commit
bf02473ccd
@ -513,14 +513,6 @@
|
|||||||
'selected' => $sel_cat
|
'selected' => $sel_cat
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i=0;$i<count($cat_list);$i++)
|
|
||||||
{
|
|
||||||
if ($cat_list[$i]['selected'] != 'selected')
|
|
||||||
{
|
|
||||||
unset($cat_list[$i]['selected']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $cat_list;
|
return $cat_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,16 +5,15 @@
|
|||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template match="delete">
|
<xsl:template match="delete">
|
||||||
<xsl:call-template name="app_header"/>
|
|
||||||
<table cellpadding="2" cellspacing="2" align="center">
|
<table cellpadding="2" cellspacing="2" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="center" colspan="2"><xsl:value-of select="lang_confirm_msg"/></td>
|
<td align="center" colspan="2"><xsl:value-of select="lang_confirm_msg"/></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<xsl:variable name="delete_action"><xsl:value-of select="delete_action"/></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>
|
<xsl:variable name="lang_yes"><xsl:value-of select="lang_yes"/></xsl:variable>
|
||||||
<form method="POST" action="{$delete_action}">
|
<form method="POST" action="{$delete_url}">
|
||||||
<input type="submit" class="forms" name="confirm" value="{$lang_yes}" onMouseout="window.status='';return true;">
|
<input type="submit" class="forms" name="confirm" value="{$lang_yes}" 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>
|
||||||
@ -25,8 +24,8 @@
|
|||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
<td align="right">
|
<td align="right">
|
||||||
<xsl:variable name="done_action"><xsl:value-of select="done_action"/></xsl:variable>
|
<xsl:variable name="done_url"><xsl:value-of select="done_url"/></xsl:variable>
|
||||||
<a href="{$done_action}" onMouseout="window.status='';return true;">
|
<a href="{$done_url}" 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_no_statustext"/>
|
||||||
|
@ -10,13 +10,13 @@
|
|||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<xsl:template match="cat_list">
|
<xsl:template match="cat_list">
|
||||||
<xsl:variable name="id"><xsl:value-of select="id"/></xsl:variable>
|
<xsl:variable name="cat_id"><xsl:value-of select="cat_id"/></xsl:variable>
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="selected">
|
<xsl:when test="selected != ''">
|
||||||
<option value="{$id}" selected="selected"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
<option value="{$cat_id}" selected="selected"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<option value="{$id}"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
<option value="{$cat_id}"><xsl:value-of disable-output-escaping="yes" select="name"/></option>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
Loading…
Reference in New Issue
Block a user