Update of /cvsroot/easymod/easymod2/mods/easymod
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12963/mods/easymod
Modified Files:
easymod_display_functions.php easymod_install.php
Log Message:
A lot of little and not so little bug fixes affecting almost all files of the package.
There is still a bit more work left to do on the ACP script to check correct use of stripslashes and also some issues related to the implementation of the new SQL Parser.
Note the version number has already been changed to 0.2.2
Index: easymod_display_functions.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_display_functions.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** easymod_display_functions.php 22 Jun 2005 16:35:15 -0000 1.16
--- easymod_display_functions.php 31 Oct 2005 17:57:15 -0000 1.17
***************
*** 135,139 ****
// we have to fix the password so it does not have a # in it or else the link won't work
$ftp_pass = str_replace('#', '~pound~', $ftp_pass) ;
! $link = "easymod_install.$phpEx?mode=debug&install_step=$install_step&write=$write&move=$move&ftp_dir=$ftp_dir&ftp_user=$ftp_user&ftp_pass=$ftp_pass&ftp_host=$ftp_host&ftp_port=$ftp_port&ftp_debug=$ftp_debug&ftp_type=$ftp_type" ;
$variables = array() ;
--- 135,139 ----
// we have to fix the password so it does not have a # in it or else the link won't work
$ftp_pass = str_replace('#', '~pound~', $ftp_pass) ;
! $link = "easymod_install.$phpEx?mode=debug&install_step=$install_step&write=$write&move=$move&ftp_dir=$ftp_dir&ftp_user=$ftp_user&ftp_pass=$ftp_pass&ftp_host=$ftp_host&ftp_port=$ftp_port&ftp_debug=$ftp_debug&ftp_type=$ftp_type" ;
$variables = array() ;
***************
*** 1016,1018 ****
! ?>
--- 1016,1018 ----
! ?>
\ No newline at end of file
Index: easymod_install.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** easymod_install.php 29 Jul 2005 17:33:07 -0000 1.29
--- easymod_install.php 31 Oct 2005 17:57:15 -0000 1.30
***************
*** 22,58 ****
define('IN_PHPBB', 1);
$phpbb_root_path = './../../../';
- $script_path = 'admin/mods/easymod/' ;
- ////
- $easymod_install_version = '0.2.1a' ;
- ////
! // PHP5 with register_long_arrays off?
! if (!isset($HTTP_POST_VARS) && isset($_POST))
{
[...1032 lines suppressed...]
// 0.0.10c and later see if we have already made the EM_ftp_type field
! if (!add_new_config('EM_ftp_type', str_replace("\'", "''", $ftp_type)))
{
handle_error( OPEN_FAIL_CRITICAL, $file_list, false, $lang['EM_err_config_table']) ;
***************
*** 1834,1839 ****
! page_footer() ;
! exit ;
}
--- 1849,1854 ----
! page_footer();
! exit;
}
|