[pLog-svn] r5898 - plog/branches/lifetype-1.2/class/test/tests/mail/phpmailer

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Mon Sep 3 22:14:20 EDT 2007


Author: jondaley
Date: 2007-09-03 22:14:20 -0400 (Mon, 03 Sep 2007)
New Revision: 5898

Modified:
   plog/branches/lifetype-1.2/class/test/tests/mail/phpmailer/phpmailer_test.class.php
Log:
pluginDir needs to be manually set, since we are using lt_include

Modified: plog/branches/lifetype-1.2/class/test/tests/mail/phpmailer/phpmailer_test.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/test/tests/mail/phpmailer/phpmailer_test.class.php	2007-09-04 00:13:59 UTC (rev 5897)
+++ plog/branches/lifetype-1.2/class/test/tests/mail/phpmailer/phpmailer_test.class.php	2007-09-04 02:14:20 UTC (rev 5898)
@@ -84,7 +84,8 @@
         $this->Mail->SMTPAuth = false;
         $this->Mail->Username = "";
         $this->Mail->Password = "";
-        $this->Mail->PluginDir = $INCLUDE_DIR;
+            // need to set PluginDir if we use lt_include()
+        $this->Mail->PluginDir  = PLOG_CLASS_PATH."class/mail/phpmailer/";
 		$this->Mail->AddReplyTo("no_reply at phpmailer.sf.net", "Reply Guy");
         $this->Mail->Sender = "unit_test at phpmailer.sf.net";
 		// set the language or else we'll get silly errors



More information about the pLog-svn mailing list