[Easymod-cvs] easymod2/mods/easymod easymod_display_functions.php,1.2,1.3 easymod_install.php,1.3,1.
Status: Beta
Brought to you by:
wgeric
From: Eric F. <wg...@us...> - 2005-04-29 00:50:39
|
Update of /cvsroot/easymod/easymod2/mods/easymod In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17618/mods/easymod Modified Files: easymod_display_functions.php easymod_install.php Log Message: - Fixed $ftp_cache not in function test_ftp when in debug mode - Rasied the character limit for MOD titles to 255 - Fixed the bbcode output, missing a couple of [/color]s Index: easymod_display_functions.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_display_functions.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** easymod_display_functions.php 27 Apr 2005 22:12:39 -0000 1.2 --- easymod_display_functions.php 29 Apr 2005 00:50:26 -0000 1.3 *************** *** 234,238 **** { // test the ftp connection ! if (test_ftp( $ftp_user, $ftp_pass, $ftp_dir, $ftp_host, true, $ftp_type)) { 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" ; --- 234,238 ---- { // test the ftp connection ! if (test_ftp( $ftp_user, $ftp_pass, $ftp_dir, $ftp_host, 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" ; *************** *** 425,430 **** if ($bbcode) { ! $ok_msg = '[b][color=green]<b class="ok">OK</b>[/b]' ; ! $okparms = '[b][color=green]<b class="ok">%s</b>[/b]' ; $no_msg = '[b]<b>' . $lang['EM_no'] . '</b>[/b]' ; $noparms = '[b]<b>%s</b>[/b]' ; --- 425,430 ---- if ($bbcode) { ! $ok_msg = '[b][color=green]<b class="ok">OK</b>[/color][/b]' ; ! $okparms = '[b][color=green]<b class="ok">%s</b>[/color][/b]' ; $no_msg = '[b]<b>' . $lang['EM_no'] . '</b>[/b]' ; $noparms = '[b]<b>%s</b>[/b]' ; Index: easymod_install.php =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** easymod_install.php 27 Apr 2005 22:12:39 -0000 1.3 --- easymod_install.php 29 Apr 2005 00:50:26 -0000 1.4 *************** *** 998,1002 **** $sql[] = "CREATE TABLE " . EASYMOD_TABLE . " ( mod_id mediumint(8) NOT NULL auto_increment, ! mod_title varchar(50) NULL DEFAULT '', mod_file varchar(255) NULL DEFAULT '', mod_version varchar(15) NULL DEFAULT '', --- 998,1002 ---- $sql[] = "CREATE TABLE " . EASYMOD_TABLE . " ( mod_id mediumint(8) NOT NULL auto_increment, ! mod_title varchar(255) NULL DEFAULT '', mod_file varchar(255) NULL DEFAULT '', mod_version varchar(15) NULL DEFAULT '', |