3a072b88368ae6495a3fa9a8a4ff8e8ae87d6101
bernd Überarbeitetes Systemuser-M...

bernd authored 13 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Überarbeitetes Systemuser-M...

bernd authored 13 years ago

16) 
17) require_once('inc/base.php');
18) 
19) require_once('useraccounts.php');
20) 
21) require_role(ROLE_CUSTOMER);
22) 
23) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

24) title("Passwort neu setzen");
bernd Systemuser-Modul sollte übe...

bernd authored 13 years ago

25) $section = "systemuser_account";
bernd Überarbeitetes Systemuser-M...

bernd authored 13 years ago

26) 
27) $account = get_account_details($_GET['uid']);
28) 
29) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

30) headline("Rücksetzen des Passworts für Benutzer »{$account['username']}«");
bernd Überarbeitetes Systemuser-M...

bernd authored 13 years ago

31) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

32) if (customer_useraccount($account['uid'])) {
33)     system_failure('Zum Ändern des Passwortes für den Hauptbenutzer verwenden Sie bitte die entsprechende Funktion im Hauptmenü!');
34) }