Update of /cvsroot/easymod/easymod2/mods/easymod
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20989
Modified Files:
easymod_display_functions.php
Log Message:
Thanks TerraFrost for pointing this out :-)
Index: easymod_display_functions.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_display_functions.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** easymod_display_functions.php 5 Nov 2005 23:25:15 -0000 1.19
--- easymod_display_functions.php 6 Nov 2005 11:17:54 -0000 1.20
***************
*** 241,245 ****
{
// test the ftp connection
! if (test_ftp( $ftp_user, $ftp_pass, $ftp_dir, $ftp_host, $ftp_port, true, $ftp_type, $ftp_cache))
{
echo '<br />[b]<b>' . $lang['EM_debug_ftp_test'] . '</b>[/b] :: [b][color=green]<b class="ok">' . $lang['EM_debug_success']. "</b>[/color][/b]<br />\n" ;
--- 241,247 ----
{
// test the ftp connection
! $test_result = test_ftp($ftp_user, $ftp_pass, $ftp_dir, $ftp_host, $ftp_port, true, $ftp_type, $ftp_cache, $test_report);
! echo implode("\n", $test_report);
! if( $test_result )
{
echo '<br />[b]<b>' . $lang['EM_debug_ftp_test'] . '</b>[/b] :: [b][color=green]<b class="ok">' . $lang['EM_debug_success']. "</b>[/color][/b]<br />\n" ;
|