Update of /cvsroot/easymod/easymod2/mods/easymod/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5948/mods/easymod/includes
Modified Files:
admin_easymod.php.txt mod_header.tpl
Removed Files:
empw.php.txt emver.php
Log Message:
- Changed copyright
- Change <br> to <br />
- Removed some more hardcoded text
- Removed the password and version change files
- Other minor changes
Index: mod_header.tpl
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/includes/mod_header.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** mod_header.tpl 24 Apr 2005 14:59:53 -0000 1.1
--- mod_header.tpl 11 Jun 2005 23:05:54 -0000 1.2
***************
*** 3,7 ****
<td align="center" width="100%">
<h1>{L_TITLE}</h1>
! <span class="gen">{L_EM_VERSION} by {NUTTZY}</span>
</td>
</tr></table>
--- 3,7 ----
<td align="center" width="100%">
<h1>{L_TITLE}</h1>
! <span class="gen">{L_EM_VERSION}</span>
</td>
</tr></table>
--- empw.php.txt DELETED ---
--- emver.php DELETED ---
Index: admin_easymod.php.txt
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/includes/admin_easymod.php.txt,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** admin_easymod.php.txt 8 Jun 2005 03:12:20 -0000 1.12
--- admin_easymod.php.txt 11 Jun 2005 23:05:54 -0000 1.13
***************
*** 4,9 ****
* -------------------
* begin : Sunday Mar 31, 2002
! * copyright : (C) 2002-2004 by Nuttzy - Craig Nuttall
! * email : nu...@bl...
*
* $Id$
--- 4,9 ----
* -------------------
* begin : Sunday Mar 31, 2002
! * copyright : (C) 2002-2004 by Nuttzy - Craig Nuttall, 2005 The phpBB Group
! * email : su...@ph...
*
* $Id$
***************
*** 88,92 ****
///
define('EASYMOD_VER', 'beta1 (0.2.0)') ;
- define('NUTTZY_LINK', '<a href="http://www.spellingcow.com" target="_blank">Nuttzy</a>') ;
define('FAQ_LINK', '<a href="http://area51.phpbb.com/phpBB22/viewtopic.php?t=12141" target="_blank">') ;
define('REPORT_LINK', '<a href="http://area51.phpbb.com/phpBB22/viewtopic.php?t=12143" target="_blank">') ;
--- 88,91 ----
***************
*** 813,818 ****
$template->assign_vars(array(
'L_TITLE' => $lang['EM_Title'],
! 'L_EM_VERSION' => EASYMOD_VER,
! 'NUTTZY' => NUTTZY_LINK)
);
--- 812,816 ----
$template->assign_vars(array(
'L_TITLE' => $lang['EM_Title'],
! 'L_EM_VERSION' => EASYMOD_VER)
);
***************
*** 2170,2183 ****
display_unprocessed_line( $commands[$i], $body[$i]) ;
}
-
- /////////////////////
- ///////////////////// emsql - say that we can't do it
- /////////////////////
- /*
- if ( $commands[$i]['command'] == 'SQL' )
- {
- $display_sql_warning = true ;
- }
- */
}
--- 2168,2171 ----
***************
*** 2194,2231 ****
$command_file->modio_cleanup('move') ;
- /////////////////////
- ///////////////////// emcopy - say that we can't do it
- /////////////////////
- /*
-
- CAN GET RID OF THIS NOW!
-
- if (($display_copy_warning) && ($mode != 'display_file') && ($mode != 'download_file'))
- {
- $template->assign_block_vars('error', array(
- 'L_TITLE' => 'v0.0.10 COPY Warning',
- 'ERROR_MESSAGE' => '<b>COPY not performed:</b> in version 0.0.10 of EM the COPY command can only COPY one file at a time. It cannot COPY *.* or entire directories (yet). The MOD you are installing is attempting to do this. You will have to manually copy these files.')
- ) ;
- }
- */
-
- /////////////////////
- ///////////////////// emsql - say that we can't do it
- /////////////////////
- /*
-
- CAN GET RID OF THIS NOW!
-
- if (($display_sql_warning) && ($mode != 'display_file') && ($mode != 'download_file'))
- {
- $template->assign_block_vars('error', array(
- 'L_TITLE' => 'SQL Notice',
- 'ERROR_MESSAGE' => '<b>SQL not performed:</b> SQL commands are not performed automatically in this version of EM. The MOD you are installing wants to perform an SQL command. You will have to manually execute this the old fashion way. If you do not know how, ask the MOD author, not Nuttzy!')
- ) ;
- }
- */
-
-
-
//
// we will now finish up the download or display file if that's what we're doing
--- 2182,2185 ----
|