Changeset 91559284cc965d5bc4bb284b11a817fd67399002
- Timestamp:
- 05/23/08 11:08:41
(6 months ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1211533721 +0200
- git-parent:
[ddf8b8b8fd033ceb4aa845869f14be1f94b9b157]
- git-author:
- Christopher Jung <bktheg@web.de> 1211533721 +0200
- Message:
[ref] Die Akademie fuegt nun kein sess mehr zu URLs hinzu
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r081f5d1 |
r9155928 |
|
| 128 | 128 | public String echoShortcut(Context context, Base base, int field, int building) { |
|---|
| 129 | 129 | org.hibernate.Session db = context.getDB(); |
|---|
| 130 | | |
|---|
| 131 | | String sess = context.getSession(); |
|---|
| 132 | | |
|---|
| | 130 | |
|---|
| 133 | 131 | StringBuilder result = new StringBuilder(200); |
|---|
| 134 | 132 | |
|---|
| … | … | |
| 136 | 134 | if( acc != null ) { |
|---|
| 137 | 135 | if( acc.getRemain() == 0 ) { |
|---|
| 138 | | result.append("<a class=\"back\" href=\"./ds?module=building&sess="); |
|---|
| 139 | | result.append(sess); |
|---|
| | 136 | result.append("<a class=\"back\" href=\"./ds?module=building"); |
|---|
| 140 | 137 | result.append("&col="); |
|---|
| 141 | 138 | result.append(base.getId()); |
|---|
| … | … | |
| 185 | 182 | result.append("_"); |
|---|
| 186 | 183 | result.append(field); |
|---|
| 187 | | result.append("',REFY,22,NOJUSTY,TIMEOUT,0,DELAY,150,WIDTH,300,BGCLASS,'gfxtooltip',FGCLASS,'gfxtooltip',TEXTFONTCLASS,'gfxtooltip');\" onmouseout=\"return nd();\" href=\"./ds?module=building&sess="); |
|---|
| 188 | | result.append(sess); |
|---|
| | 184 | result.append("',REFY,22,NOJUSTY,TIMEOUT,0,DELAY,150,WIDTH,300,BGCLASS,'gfxtooltip',FGCLASS,'gfxtooltip',TEXTFONTCLASS,'gfxtooltip');\" onmouseout=\"return nd();\" href=\"./ds?module=building"); |
|---|
| 189 | 185 | result.append("&col="); |
|---|
| 190 | 186 | result.append(base.getId()); |
|---|