diff options
Diffstat (limited to 'app/php/pages')
-rw-r--r-- | app/php/pages/Profile.page | 2 | ||||
-rw-r--r-- | app/php/pages/Signup.page | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/app/php/pages/Profile.page b/app/php/pages/Profile.page index 7bd6718..163d3fa 100644 --- a/app/php/pages/Profile.page +++ b/app/php/pages/Profile.page @@ -1,9 +1,11 @@ <com:TContent ID="Content"> <com:PasswordChange> + <prop:Facade><%= UserFacade::getInstance() %></prop:Facade> <prop:UserToChange><%= $this->User %></prop:UserToChange> </com:PasswordChange> <br /> <com:TimezoneSelect> + <prop:Facade><%= UserFacade::getInstance() %></prop:Facade> <prop:UserToChange><%= $this->User %></prop:UserToChange> </com:TimezoneSelect> <br /> diff --git a/app/php/pages/Signup.page b/app/php/pages/Signup.page index da863d4..834b7cf 100644 --- a/app/php/pages/Signup.page +++ b/app/php/pages/Signup.page @@ -1,3 +1,5 @@ <com:TContent ID="Content"> - <com:RegistrationForm /> + <com:RegistrationForm> + <prop:Facade><%= UserFacade::getInstance() %></prop:Facade> + </com:RegistrationForm> </com:TContent> |