fix password field

This commit is contained in:
Fran��ois Serman 2013-10-17 10:28:11 +00:00
parent eebacb9be2
commit 5b57c32b8a
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ if (!$ftp_accounts) {
} }
else { else {
foreach ($ftp_accounts AS $single_ftp_account) foreach ($ftp_accounts AS $single_ftp_account)
echo '<tr><td>' . $single_ftp_account['login'] . '</td><td>' . $single_ftp_account['password'] . '</td><td>' . $single_ftp_account['dir'] . '</td></tr>'; echo '<tr><td>' . $single_ftp_account['login'] . '</td><td>' . $single_ftp_account['pass'] . '</td><td>' . $single_ftp_account['dir'] . '</td></tr>';
} }
?> ?>
</table> </table>