summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: daf2118)
raw | patch | inline | side by side (parent: daf2118)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 2 Mar 2010 13:28:23 +0000 (13:28 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 2 Mar 2010 13:28:23 +0000 (13:28 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@15856 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/personal/password/main.inc | [deleted file] | patch | blob | history |
diff --git a/gosa-core/plugins/personal/password/main.inc b/gosa-core/plugins/personal/password/main.inc
+++ /dev/null
@@ -1,62 +0,0 @@
-<?php
-/*
- * This code is part of GOsa (http://www.gosa-project.org)
- * Copyright (C) 2003-2008 GONICUS GmbH
- *
- * ID: $$Id$$
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
-
-
-/* Remove locks created by this plugin
-*/
-$lock_msg="";
-if ($remove_lock){
- if(session::is_set('password')){
- //Nothing to do here
- }
-}
-
-/* Remove this plugin from session
-*/
-if ( $cleanup ){
- session::un_set('password');
- session::un_set('edit');
-}else{
-
- /* Reset requested? */
- if (isset($_POST['edit_cancel'])){
- session::un_set ('edit');
- session::un_set ('password');
- }
-
- /* Create password object on demand */
- if (!session::is_set('password') || (isset($_GET['reset']) && $_GET['reset'] == 1)){
- session::set('password', new password ($config, $ui->dn));
- }
- $password = session::get('password');
-
- /* Execute formular */
- $display.= $password->execute ();
-
- /* Page header*/
- $display= print_header(get_template_path('plugins/password/images/plugin.png'),
- _("Password settings"), "").$display;
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>