Browse Source

Add closing Body and HTML tags, remove Newlines at end of files (just incase)

Jimmy Conner 22 năm trước cách đây
mục cha
commit
80723ea2d6

+ 1 - 1
plugins/filters/filters.php

@@ -867,4 +867,4 @@ function filter_get_headers ($imap_stream, $query) {
     return $msgs;
     return $msgs;
 }
 }
 
 
-?>
+?>

+ 2 - 1
plugins/filters/options.php

@@ -239,4 +239,5 @@ sqgetGlobalVar('action', $action, SQ_GET);
                 html_tag( 'td', ' ', 'left' )
                 html_tag( 'td', ' ', 'left' )
             ) ,
             ) ,
         'center', '', 'width="80%" border="0" cellpadding="2" cellspacing="0"' );
         'center', '', 'width="80%" border="0" cellpadding="2" cellspacing="0"' );
-?>
+    echo '</body></html>';
+?>

+ 1 - 1
plugins/filters/setup.php

@@ -152,4 +152,4 @@ function filters_optpage_register_block() {
         );
         );
     }
     }
 }
 }
-?>
+?>

+ 3 - 2
plugins/filters/spamoptions.php

@@ -178,7 +178,7 @@ if (isset($action) && $action == 'spam') {
         '</table>'.
         '</table>'.
         '</center>'.
         '</center>'.
         '</form>';
         '</form>';
-
+    echo '</body></html>';
 }
 }
 
 
 if (! isset($_GET['action']) || $_GET['action'] != 'spam') {
 if (! isset($_GET['action']) || $_GET['action'] != 'spam') {
@@ -221,6 +221,7 @@ if (! isset($_GET['action']) || $_GET['action'] != 'spam') {
         echo "</td></tr>\n";
         echo "</td></tr>\n";
     }
     }
     echo '</table>';
     echo '</table>';
+    echo '</body></html>';
 }
 }
 
 
-?>
+?>