- improved 'edit ftp-account', fixes #116

This commit is contained in:
Michael Kaufmann (d00p)
2010-04-07 06:08:09 +00:00
parent fb4ade70d2
commit 368e6a5c50
6 changed files with 89 additions and 21 deletions

View File

@@ -38,7 +38,7 @@ function makePathfield($path, $uid, $gid, $fieldType, $value = '')
if($fieldType == 'Manual')
{
$field = '<input type="text" name="path" value="' . htmlspecialchars($value) . '" size="30" />';
$field = '<input type="text" name="path" value="' . htmlspecialchars($value) . '" />';
}
elseif($fieldType == 'Dropdown')
{
@@ -65,7 +65,7 @@ function makePathfield($path, $uid, $gid, $fieldType, $value = '')
else
{
$field = $lng['panel']['toomanydirs'];
$field.= '<input type="text" name="path" value="' . htmlspecialchars($value) . '" size="30" />';
$field.= '<input type="text" name="path" value="' . htmlspecialchars($value) . '" />';
}
}
else