JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
update wfpl and templates
[contractor-progress.git] / login.php
index 5dcaa64..3e88184 100644 (file)
--- a/login.php
+++ b/login.php
@@ -1,5 +1,20 @@
 <?php
 
+#  Copyright (C) 2008  Jason Woofenden
+#
+#  This program is free software: you can redistribute it and/or modify
+#  it under the terms of the GNU Affero General Public License as published by
+#  the Free Software Foundation, either version 3 of the License, or
+#  (at your option) any later version.
+#
+#  This program is distributed in the hope that it will be useful,
+#  but WITHOUT ANY WARRANTY; without even the implied warranty of
+#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#  GNU Affero General Public License for more details.
+#
+#  You should have received a copy of the GNU Affero General Public License
+#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
 function login_get_fields() {
        $username = format_oneline($_REQUEST['username']);
        tem_set('username', $username);
@@ -30,6 +45,9 @@ function login_main() {
                                message("Logged in successfully.");
                                session_new();
                                session_set('auth_username', "$id");
+                               if($id == '1') {
+                                       session_set('auth_admin', 'yes');
+                               }
                                if($url) {
                                        return $url;
                                } else {
@@ -38,9 +56,8 @@ function login_main() {
                        }
                }
 
-               tem_sub('failed');
+               tem_set('failed');
        }
-       tem_sub('main_body');
 }
 
 ?>