-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCAKE_BUGS_AND_ENHANCEMENTS
38 lines (26 loc) · 1.11 KB
/
CAKE_BUGS_AND_ENHANCEMENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
##########
Profile/Edit FILE/PUT/POST issue:
http://cakephp.lighthouseapp.com/projects/42648/tickets/67-fix-formhelpercreatetype-file-defaults-to-http-put-should-default-to-http-post-configurable-else-issues-with-securitycomponentrequirepost-vs-securitycomponentrequireput-appear
##########
SecurityComponent working with requestAction
See: http://cakephp.lighthouseapp.com/projects/42648/tickets/67-fix-formhelpercreatetype-file-defaults-to-http-put-should-default-to-http-post-configurable-else-issues-with-securitycomponentrequirepost-vs-securitycomponentrequireput-appear
#############
Test this on a clean 1.3 version: setting $this->layout has issues
// @ AppController
function beforeFilter() {
$this->layout = 'visitor';
}
// @ UsersController
function add() {
$this->layout = 'fullscreen';
}
// @ AppController
function AppController::beforeRender() {
debug($this->layout);
}
# 'visitor' - wtf?
#############
afterLayout method for GET requests by the user (to be used by BreadCrumeComponent)
##################
AuthComponent and Flash - different styles for "successful" flashs (like login/logout)
##################