Fixed require_once paths in class/deliver/deliver_FOO.class.php
authorthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 5 Sep 2002 23:39:33 +0000 (23:39 +0000)
committerthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 5 Sep 2002 23:39:33 +0000 (23:39 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3575 7612ce4b-ef26-0410-bec9-ea0150e637f0

class/deliver/Deliver_IMAP.class.php
class/deliver/Deliver_SMTP.class.php
class/deliver/Deliver_SendMail.class.php

index dd507a56d79dbbb83d57937bc40448b3913165e4..7aec62ff3f306adc608fe0e0139d3ff90f1e5cf8 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 
-require_once('Deliver.class.php');
+require_once('../class/deliver/Deliver.class.php');
 
 class Deliver_IMAP extends Deliver {
 
index 1757389817b11083c08d7333a6bacbceddd93a62..2c4ca6388c3a9fc0ce2983c76748065f241f3b5e 100644 (file)
@@ -10,7 +10,7 @@
  * $Id$
  */
 
-require_once('Deliver.class.php');
+require_once('../class/deliver/Deliver.class.php');
 
 class Deliver_SMTP extends Deliver {
 
index 119afb88951ba0da24a18460a8b08e31cbb1b7df..d44c2efcb2824ea12e0231ce1e1c12ca73fa77e8 100644 (file)
@@ -10,7 +10,7 @@
  * $Id$
  */
 
-require_once('Deliver.class.php');
+require_once('../class/deliver/Deliver.class.php');
 
 class Deliver_SendMail extends Deliver {