瀏覽代碼

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

thomppj 23 年之前
父節點
當前提交
072fc8552f
共有 8 個文件被更改,包括 8 次插入8 次删除
  1. 1 1
      class/html.class.php
  2. 1 1
      class/mime.class.php
  3. 1 1
      config/conf.pl
  4. 1 1
      functions/mailbox_display.php
  5. 1 1
      functions/page_header.php
  6. 1 1
      src/read_body.php
  7. 1 1
      src/right_main.php
  8. 1 1
      src/validate.php

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

@@ -1,6 +1,6 @@
 <?php
 /**
- * html.class
+ * html.class.php
  *
  * Copyright (c) 2002 The SquirrelMail Project Team
  * 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
 
 /**
- * mime.class
+ * mime.class.php
  *
  * Copyright (c) 2002 The SquirrelMail Project Team
  * 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';
 }
 if ( !$uid_support ) {
-    $uid_support = 'true';
+    $uid_support = 'false';
 }
 
 if ( !$allow_charset_search ) {

+ 1 - 1
functions/mailbox_display.php

@@ -14,7 +14,7 @@
 
 require_once('../functions/strings.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');
 
 /* Default value for page_selector_max. */

+ 1 - 1
functions/page_header.php

@@ -14,7 +14,7 @@
 require_once('../functions/strings.php');
 require_once('../functions/imap_utf7_decode_local.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 */
 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/smtp.php');
 require_once('../functions/html.php');
-require_once('../class/html.class');
+require_once('../class/html.class.php');
 require_once('../src/view_header.php');
 
 /**

+ 1 - 1
src/right_main.php

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

+ 1 - 1
src/validate.php

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