Browse Source

Renamed class/*.class files to class/*.class.php and made modifications
throughout the SquirrelMail code to represent these changes.

thomppj 23 years ago
parent
commit
072fc8552f

+ 1 - 1
class/html.class → class/html.class.php

@@ -1,6 +1,6 @@
 <?php
 <?php
 /**
 /**
- * html.class
+ * html.class.php
  *
  *
  * Copyright (c) 2002 The SquirrelMail Project Team
  * Copyright (c) 2002 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  * Licensed under the GNU GPL. For full terms see the file COPYING.

+ 1 - 1
class/mime.class → class/mime.class.php

@@ -1,7 +1,7 @@
 <?php
 <?php
 
 
 /**
 /**
- * mime.class
+ * mime.class.php
  *
  *
  * Copyright (c) 2002 The SquirrelMail Project Team
  * Copyright (c) 2002 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  * Licensed under the GNU GPL. For full terms see the file COPYING.

+ 1 - 1
config/conf.pl

@@ -297,7 +297,7 @@ if ( !$allow_server_sort ) {
     $allow_server_sort = 'false';
     $allow_server_sort = 'false';
 }
 }
 if ( !$uid_support ) {
 if ( !$uid_support ) {
-    $uid_support = 'true';
+    $uid_support = 'false';
 }
 }
 
 
 if ( !$allow_charset_search ) {
 if ( !$allow_charset_search ) {

+ 1 - 1
functions/mailbox_display.php

@@ -14,7 +14,7 @@
 
 
 require_once('../functions/strings.php');
 require_once('../functions/strings.php');
 require_once('../functions/html.php');
 require_once('../functions/html.php');
-require_once('../class/html.class');
+require_once('../class/html.class.php');
 require_once('../functions/imap_utf7_decode_local.php');
 require_once('../functions/imap_utf7_decode_local.php');
 
 
 /* Default value for page_selector_max. */
 /* Default value for page_selector_max. */

+ 1 - 1
functions/page_header.php

@@ -14,7 +14,7 @@
 require_once('../functions/strings.php');
 require_once('../functions/strings.php');
 require_once('../functions/imap_utf7_decode_local.php');
 require_once('../functions/imap_utf7_decode_local.php');
 require_once('../functions/html.php');
 require_once('../functions/html.php');
-require_once('../class/html.class');
+require_once('../class/html.class.php');
 
 
 /* Always set up the language before calling these functions */
 /* Always set up the language before calling these functions */
 function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) {
 function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) {

+ 1 - 1
src/read_body.php

@@ -19,7 +19,7 @@ require_once('../functions/date.php');
 require_once('../functions/url_parser.php');
 require_once('../functions/url_parser.php');
 require_once('../functions/smtp.php');
 require_once('../functions/smtp.php');
 require_once('../functions/html.php');
 require_once('../functions/html.php');
-require_once('../class/html.class');
+require_once('../class/html.class.php');
 require_once('../src/view_header.php');
 require_once('../src/view_header.php');
 
 
 /**
 /**

+ 1 - 1
src/right_main.php

@@ -202,4 +202,4 @@ sqimap_logout ($imapConnection);
 
 
 echo '</body></html>';
 echo '</body></html>';
 
 
-?>
+?>

+ 1 - 1
src/validate.php

@@ -13,7 +13,7 @@
  * messages with a session_register.
  * messages with a session_register.
  */
  */
  
  
-require_once('../class/mime.class');
+require_once('../class/mime.class.php');
 
 
 session_start();
 session_start();