Changeset 103 for trunk/Modules/User/UUserControlPage.pas
- Timestamp:
- Oct 8, 2012, 8:48:16 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/User/UUserControlPage.pas
r100 r103 32 32 33 33 uses 34 UCore, UUtils, UUser ;34 UCore, UUtils, UUser, UWebSession; 35 35 36 36 { TUserControlPage } … … 85 85 end; 86 86 end; 87 with AddNewAction do begin 88 Caption := 'Přihlásit'; 89 Action := 'Login'; 90 end; 87 AddNewAction('Přihlásit', 'Login'); 91 88 end; 92 89 if HandlerData.Request.Post.SearchKey('Login') <> -1 then begin … … 145 142 end; 146 143 end; 147 with AddNewAction do begin 148 Caption := 'Registrovat'; 149 Action := 'Register'; 150 end; 144 AddNewAction('Registrovat', 'Register'); 151 145 end; 152 146 if HandlerData.Request.Post.SearchKey('Register') <> -1 then … … 217 211 end; 218 212 end; 219 with AddNewAction do begin 220 Caption := 'Uložit'; 221 Action := 'Save'; 222 end; 213 AddNewAction('Uložit', 'Save'); 223 214 end; 224 215 if HandlerData.Request.Post.SearchKey('Save') <> -1 then
Note:
See TracChangeset
for help on using the changeset viewer.