15.06.2007, 09:01
Ich habe jetzt folgende Änderungen am template.php vorgenommen:
1. Setzen einer Variablen $str_group = ""
2. Abfrage, ob $grouptype wirklich einen Wert hat
3. den kompletten Parameter als $str_group dranhängen
1. Setzen einer Variablen $str_group = ""
2. Abfrage, ob $grouptype wirklich einen Wert hat
3. den kompletten Parameter als $str_group dranhängen
PHP-Code:
$str_group = "";
if($grouptype)
{
if ($grouptype != "") {$str_group = "&group=$grouptype";}
echo "<tr>\n";
echo "<td class=\"$altbg\" width=\"10\"> </td>\n";
echo "<td class=\"$altbg\">";
}
else
{
echo "<tr>\n";
echo "<td class=\"$altbg\" colspan=\"2\">\n";
}
if(!$template['tid'])
{
echo "<a href=\"templates.php?".SID."&action=add&title=".$template['originaltitle']."&sid=".$set['sid'].$opengroup."\"><span class=\"highlight4\">".$template['originaltitle']."</span></a></td>\n";
echo "<td class=\"$altbg\" align=\"right\">";
echo "<input type=\"button\" value=\"$lang->change_original\" onclick=\"hopto('templates.php?".SID."&action=add&title=".$template['originaltitle']."&sid=".$set['sid'].$str_group."');\" class=\"submitbutton\" />";
echo "</td>\n";
echo "</tr>\n";
}
elseif($template['customtemplate'])
{
echo "<a href=\"templates.php?".SID."&action=edit&tid=".$template['tid'].$opengroup."\"><span class=\"highlight2\">".$template['title']."</span></a></td>";
echo "<td class=\"$altbg\" align=\"right\">";
echo "<input type=\"button\" value=\"$lang->edit\" onclick=\"hopto('templates.php?".SID."&action=edit&tid=".$template['tid'].$str_group."');\" class=\"submitbutton\" />";
echo "<input type=\"button\" value=\"$lang->delete\" onclick=\"hopto('templates.php?".SID."&action=delete&tid=".$template['tid']."&expand=$expand".$str_group."');\" class=\"submitbutton\" />";
echo "</td>\n";
echo "</tr>\n";
}
else
{
echo "<a href=\"templates.php?".SID."&action=edit&tid=".$template['tid'].$opengroup."\"><span class=\"highlight3\">".$template['originaltitle']."</span></a></td>";
echo "<td class=\"$altbg\" align=\"right\">";
echo "<input type=\"button\" value=\"$lang->edit\" onclick=\"hopto('templates.php?".SID."&action=edit&tid=".$template['tid'].$str_group."');\" class=\"submitbutton\" />";
if($expand == 1)
{
echo "<input type=\"button\" value=\"$lang->diff\" onclick=\"hopto('templates.php?".SID."&action=diff&title=".$template['originaltitle']."&sid2=$expand');\" class=\"submitbutton\" />";
}
echo "<input type=\"button\" value=\"$lang->revert_original\" onclick=\"hopto('templates.php?".SID."&action=revert&tid=".$template['tid']."&expand=$expand".$str_group."');\" class=\"submitbutton\" />";
echo "</td>\n";
echo "</tr>\n";
}
$grouptype = "";