Project

General

Profile

« Previous | Next » 

Revision 538

Added by Matthias almost 17 years ago

Replaced hardcoded text in login.php with language variables (fixes #386)

View differences:

trunk/CHANGELOG
11 11
! = Update/Change
12 12

  
13 13
------------------------------------- 2.7.0 -------------------------------------
14
13-Jan-2008 Christian Sommer
14
14-Jan-2008 Matthias Gallas
15
#	Replaced hardcoded text in login.php with language variables (fixes ticket 386)	
16
14-Jan-2008 Christian Sommer
15 17
#	re-introduced bugfix of Changeset 472 (fixes ticket 402) accidentally 
16 18
	removed by Changeset 529 (enhanced pages admin)
17

  
18 19
13-Jan-2008 Christian Sommer
19 20
#	moved administration tools from Settings to the new section Admin-Tools
20

  
21
13-Jan-2008 Christian Sommer
22 21
#	this bugfix closes the ticket 529 (WB upgrades modules with identical version)	
23

  
24
13-Jan-2008 Christian Sommer
25 22
!	increased redirection time after success message, corrected HOME link of the login panel
26

  
27
13-Jan-2008 Christian Sommer
28 23
!	updated PHPMailer framework to version 2.0.0 (/include/phpmailer)
29

  
30
13-Jan-2008 Christian Sommer
31 24
#	this bugfix closes ticket 412 (direct call of admin/settings/save.php clears database)
32

  
33
13-Jan-2008 Christian Sommer
34 25
#	fixed error with redirection to admin panel after installation
35

  
36 26
12-Jan-2008 Christian Sommer
37 27
!	introduced smart URL detection for the 'View' menu in the WB backend
38 28
	(if page_id is set, redirect to this page instead of the root)
39

  
40
12-Jan-2008 Christian Sommer
41 29
!	introduced the enhanced pages admin dialogue (thanks to icouto)
42

  
43 30
11-Jan-2008 Christian Sommer
44 31
+	added the FCKEditor module files missing in Changeset 527 (/modules/fckeditor)
45

  
46
11-Jan-2008 Christian Sommer
47 32
-	removed the hmtlarea files in /modules/htmlarea
48 33
!	set the fckeditor as the new default editor /install/save.php
49

  
50
11-Jan-2008 Christian Sommer
51 34
!	Updated function: register_frontend_modfiles in /framework/frontend.functions.php
52 35
	(added constants MOD_FRONTEND_CSS_REGISTERED, MOD_FRONTEND_JAVASCRIPT_REGISTERED)
53

  
54 36
11-Jan-2008 Matthias Gallas
55 37
!	Update codepress to Version 0.9.6
56 38
!	Update phplib to Version 7.4a
trunk/wb/languages/EN.php
406 406
$TEXT['WBMAILER_SMTP_AUTH_NOTICE'] = 'only activate if your SMTP host requires authentification';
407 407
$TEXT['WBMAILER_SMTP_USERNAME'] = 'SMTP username';
408 408
$TEXT['WBMAILER_SMTP_PASSWORD'] = 'SMTP password';
409
$TEXT['PLEASE_LOGIN'] = 'Please login';
409 410

  
410 411
// Success/error messages
411 412
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, you do not have permissions to view this page';
trunk/wb/account/login.php
44 44
define('ROOT_PARENT', 0);
45 45
define('PARENT', 0);
46 46
define('LEVEL', 0);
47
define('PAGE_TITLE', 'Please login');
48
define('MENU_TITLE', 'Please login');
47
define('PAGE_TITLE', $TEXT['PLEASE_LOGIN']);
48
define('MENU_TITLE', $TEXT['PLEASE_LOGIN']);
49 49
define('VISIBILITY', 'public');
50 50
// Set the page content include file
51 51
define('PAGE_CONTENT', WB_PATH.'/account/login_form.php');

Also available in: Unified diff