Update of /cvsroot/easymod/easymod2/mods/easymod
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28798
Modified Files:
easymod_install.php
Log Message:
Fixed some issues still pending in the installer such as making sure the user language is selected, if present on the package. Aside from normalizing use of semi-colons at end on statements.
Index: easymod_install.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** easymod_install.php 2 Nov 2005 19:42:50 -0000 1.35
--- easymod_install.php 4 Nov 2005 22:06:13 -0000 1.36
***************
*** 73,96 ****
// set teh language (typo intentional ;-) )
//
- if(!empty($HTTP_GET_VARS['language']) || !empty($HTTP_POST_VARS['language']))
- {
- $language = (!empty($HTTP_POST_VARS['language'])) ? stripslashes($HTTP_POST_VARS['language']) : stripslashes($HTTP_GET_VARS['language']);
- }
- else if ( !empty($HTTP_COOKIE_VARS['em_lang']) )
- {
- $language = stripslashes($HTTP_COOKIE_VARS['em_lang']);
- }
[...2253 lines suppressed...]
! echo "<br />\n";
! echo '<br /><br /><h2><span class="ok"><b>' . $lang['EM_install_completed'] . "</b></span></h2>\n";
! echo '<p>' . $lang['EM_admin_panel'] . "</p><br />";
page_footer();
***************
*** 1872,1877 ****
else
{
! echo $lang['EM_err_no_step'] . "<br />\n" ;
! exit ;
}
--- 1858,1863 ----
else
{
! echo $lang['EM_err_no_step'] . "<br />\n";
! exit;
}
|