fixed bugs in next/previous
[squirrelmail.git] / src / webmail.php
index 41cf17c25ab07d53b35da0957b42c659b5464c01..cfcf871a8be976ba2f5a0c188a58a0fe372d00c0 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
    /**
     **  webmail.php
     **
@@ -6,6 +6,8 @@
     **
     **/
 
+   session_start();
+
    if(!isset($username)) {
       echo _("You need a valid user and password to access this page!");
       exit;
    setcookie("username", $username, 0, "/");
    setcookie("key", $key, 0, "/");
    setcookie("logged_in", 1, 0, "/");
+   
    // Refresh the language cookie.
-   if (isset($squirrelmail_language))
-      setcookie("squirrelmail_language", $squirrelmail_language,
-                time()+2592000);
+   if (isset($squirrelmail_language)) {
+      setcookie("squirrelmail_language", $squirrelmail_language, time()+2592000);
+   }
 ?>
 <HTML><HEAD>
-<?
+<?php
    include ("../config/config.php");
    include ("../functions/prefs.php");
    include ("../functions/imap.php");