Make website fields into links

This commit is contained in:
james 2007-11-29 18:26:37 +00:00
parent ef2cc85c8c
commit a2105c30f4

View File

@ -1166,6 +1166,12 @@ class TableEditor
}
echo "</td>";
}
else if(substr($f,0,7)=="website")
{
echo "<td valign=\"top\">";
echo "<a href=\"{$r->$f}\" target=\"_blank\">{$r->$f}</a>";
echo "</td>";
}
else
{
if($this->fieldOptions[$f])