Update of /cvsroot/easymod/easymod2/mods/easymod
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4254/mods/easymod
Modified Files:
easymod_display_functions.php easymod_install.php
Log Message:
Fixed a couple of parse errors I added in last commit
Index: easymod_display_functions.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_display_functions.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** easymod_display_functions.php 2 May 2005 00:22:38 -0000 1.5
--- easymod_display_functions.php 6 May 2005 21:24:10 -0000 1.6
***************
*** 116,120 ****
$variables['TEXT'] = $text ;
! isplay_template( $phpbb_root_path . $script_path . 'templates/page_start.tpl', $variables) ;
if (!$simple)
{
--- 116,120 ----
$variables['TEXT'] = $text ;
! display_template( $phpbb_root_path . $script_path . 'templates/page_start.tpl', $variables) ;
if (!$simple)
{
Index: easymod_install.php
===================================================================
RCS file: /cvsroot/easymod/easymod2/mods/easymod/easymod_install.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** easymod_install.php 2 May 2005 00:22:38 -0000 1.6
--- easymod_install.php 6 May 2005 21:24:10 -0000 1.7
***************
*** 22,26 ****
define('IN_PHPBB', 1);
$phpbb_root_path = './../../../';
! $script_path = 'admin/mods/easymod' ;
////
$easymod_install_version = '0.1.13' ;
--- 22,26 ----
define('IN_PHPBB', 1);
$phpbb_root_path = './../../../';
! $script_path = 'admin/mods/easymod/' ;
////
$easymod_install_version = '0.1.13' ;
***************
*** 1773,1777 ****
// added security starting in 0.0.11, blowfish encrypt the ftp_pass
! include($phpbb_root_path . $script_path . '/em_includes/em_cipher.'.$phpEx) ;
$cipher = new Cipher_BlockMode_cbc();
$cipher->blowfish->setKey( $em_pass);
--- 1773,1777 ----
// added security starting in 0.0.11, blowfish encrypt the ftp_pass
! include($phpbb_root_path . $script_path . 'em_includes/em_cipher.'.$phpEx) ;
$cipher = new Cipher_BlockMode_cbc();
$cipher->blowfish->setKey( $em_pass);
|