Subversion-Projekte lars-tiefland.ci

Revision

Revision 755 | Revision 771 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 755 Revision 768
Zeile 6... Zeile 6...
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
6
 * @author Lars Tiefland <ltiefland@gmail.com> 
7
 * @copyright 2016
7
 * @copyright 2016
8
 * @version $Rev: 744 $
8
 * @version $Rev: 744 $
9
 */
9
 */
Zeile -... Zeile 10...
-
 
10
 
-
 
11
$config["login/execute"] = array(
-
 
12
	array(
-
 
13
		'field' => 'email',
-
 
14
		'label' => 'E-Mail',
-
 
15
		'rules' => 'required|trim|valid_email',
-
 
16
		'errors' => array(
-
 
17
			'valid_email' => $GLOBALS['langstrings']['login']['invalid_email'],
-
 
18
			'required' => $GLOBALS['langstrings']['login']['invalid_email'],
-
 
19
			),
-
 
20
		),
-
 
21
	array(
-
 
22
		'field' => 'password',
-
 
23
		'label' => 'Passwort',
-
 
24
		'rules' => 'required|trim',
-
 
25
		'errors' => array('required' => 'Bitte geben Sie ein Paßwort ein!'),
-
 
26
		),
-
 
27
	);
10
 
28