Revision 1088
Added by Matthias over 15 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.0 ------------------------------------- |
14 | 14 |
22-July 2009 Matthias Gallas |
15 |
# Fixed E_ALL&E_STRICT warning on PHP5 servers (Thanks to Aldus) |
|
15 | 16 |
# Fixed bug with home folders are viewable and writable from other users |
16 | 17 |
(ticket #605 and #748) (Thanks to Aldus) |
17 | 18 |
20-July 2009 Matthias Gallas |
trunk/wb/account/preferences.php | ||
---|---|---|
36 | 36 |
} |
37 | 37 |
|
38 | 38 |
require_once(WB_PATH.'/framework/class.wb.php'); |
39 |
if (wb::is_authenticated()==false) { |
|
39 |
$wb_inst = new wb(); |
|
40 |
if ($wb_inst->is_authenticated()==false) { |
|
40 | 41 |
header('Location: '.WB_URL.'/account/login.php'); |
41 | 42 |
exit(0); |
42 | 43 |
} |
Also available in: Unified diff
Fixed E_ALL&E_STRICT warning on PHP5 servers (Thanks to Aldus)