|
From: Paul S. O. <ps...@us...> - 2002-04-07 08:08:28
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv1233/includes
Modified Files:
Tag: phpBB-2_0_0
emailer.php
Log Message:
Fix path bug
Index: emailer.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/emailer.php,v
retrieving revision 1.15
retrieving revision 1.15.2.1
diff -C2 -r1.15 -r1.15.2.1
*** emailer.php 22 Mar 2002 19:33:28 -0000 1.15
--- emailer.php 7 Apr 2002 00:52:41 -0000 1.15.2.1
***************
*** 179,193 ****
function send()
{
! global $phpEx, $phpbb_root_dir;
!
! if (isset($phpbb_root_dir))
! {
! // we must be in the admin section.
! $phpbb_root_path = $phpbb_root_dir;
! }
! else
! {
! $phpbb_root_path = "./";
! }
if ($this->address == NULL)
--- 179,183 ----
function send()
{
! global $phpEx, $phpbb_root_path;
if ($this->address == NULL)
|