Changeset 85021d1998197b2c6b82c654ebcf116b0aba00f2
- Timestamp:
- 05/22/08 18:39:55
(3 months ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1211474395 +0200
- git-parent:
[f328b74996d55e5c1c40dc0bd3c12de224a1e75c]
- git-author:
- Christopher Jung <bktheg@web.de> 1211474395 +0200
- Message:
[ref] Die Session-ID wird nun nicht mehr bei link_to und form_create_hidden ergaenzt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9eeebea |
r85021d1 |
|
| 150 | 150 | |
|---|
| 151 | 151 | if( paramlist.containsKey("module") ) { |
|---|
| 152 | | text.append(paramlist.get("module")+"&sess="); |
|---|
| | 152 | text.append(paramlist.get("module")+"&"); |
|---|
| 153 | 153 | paramlist.remove("module"); |
|---|
| 154 | 154 | } |
|---|
| 155 | 155 | else { |
|---|
| 156 | | text.append("\"); str.append(templateEngine.getVar(\"global.module\")); str.append(\"&sess="); |
|---|
| 157 | | } |
|---|
| 158 | | |
|---|
| 159 | | text.append("\"); str.append(templateEngine.getVar(\"global.sess\")); str.append(\""); |
|---|
| 160 | | |
|---|
| 161 | | text.append("&action="+action); |
|---|
| | 156 | text.append("\"); str.append(templateEngine.getVar(\"global.module\")); str.append(\"&"); |
|---|
| | 157 | } |
|---|
| | 158 | |
|---|
| | 159 | text.append("action="+action); |
|---|
| 162 | 160 | |
|---|
| 163 | 161 | if( paramlist.size() > 0 ) { |
|---|
| … | … | |
| 310 | 308 | } |
|---|
| 311 | 309 | |
|---|
| 312 | | text.append("<input type=\\\"hidden\\\" name=\\\"sess\\\" value=\\\"\"); str.append(templateEngine.getVar(\"global.sess\")); str.append(\"\\\" />\n"); |
|---|
| 313 | | |
|---|
| 314 | 310 | for( Map.Entry<String, String> entry : paramlist.entrySet() ) { |
|---|
| 315 | 311 | text.append("<input type=\\\"hidden\\\" name=\\\""+entry.getKey()+"\\\" value=\\\""+entry.getValue()+"\\\" />\n"); |
|---|