b2ad7569cf15b7ca49876dc8121fd612e78695c4
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/verify.php     1) <?php
modules/index/verify.php     2) /*
modules/index/verify.php     3) This file belongs to the Webinterface of schokokeks.org Hosting
modules/index/verify.php     4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

modules/handles/verify.php   5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/verify.php     6)   Bernd Wurst <bernd@schokokeks.org>
modules/index/verify.php     7)   Hanno Böck <hanno@schokokeks.org>
modules/index/verify.php     8) 
modules/index/verify.php     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.
modules/index/verify.php    10) 
modules/index/verify.php    11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
modules/index/verify.php    12) https://creativecommons.org/publicdomain/zero/1.0/
modules/index/verify.php    13) 
modules/index/verify.php    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.
modules/index/verify.php    15) */
modules/index/verify.php    16) 
Bernd Wurst Security

Bernd Wurst authored 6 years ago

modules/contacts/verify.php 17) require_once('contacts.php');
Bernd Wurst E-Mail-Adresse verifizieren...

Bernd Wurst authored 6 years ago

modules/handles/verify.php  18) require_once('verify.php');
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/verify.php    19) require_once('inc/security.php');
modules/index/verify.php    20) 
modules/index/verify.php    21) title("E-Mail-Adresse bestätigen");
Bernd Wurst Umbenennung Datenbank handl...

Bernd Wurst authored 6 years ago

modules/contacts/verify.php 22) $section = 'contacts_list';
Bernd Wurst Verify-Funktion für Kunden-...

Bernd Wurst authored 6 years ago

modules/index/verify.php    23) 
modules/index/verify.php    24) if (isset($_REQUEST['token']))
modules/index/verify.php    25) {
modules/index/verify.php    26)   $token = $_REQUEST['token'];
modules/index/verify.php    27)   $daten = verify_mail_token($token);
modules/index/verify.php    28)   if ($daten == NULL) {
modules/index/verify.php    29)     system_failure('Die E-Mail-Adresse konnte nicht verifiziert werden. Vielleicht ist der Link bereits abgelaufen.');
modules/index/verify.php    30)   } else  {
modules/index/verify.php    31)     update_mailaddress($daten);
Bernd Wurst API-Funktionen um Kontakte...

Bernd Wurst authored 6 years ago

modules/contacts/verify.php 32)     $c = get_contact($daten['contact']);
modules/contacts/verify.php 33)     upload_contact($c);