Changeset 4a45c129a9fec5414f67f8e59ac7ff9157fad08b
- Timestamp:
- 05/31/08 15:46:11
(6 months ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1212241571 +0200
- git-parent:
[6ba369ede2f045f9e505cf1df997a31138f99dee]
- git-author:
- Christopher Jung <bktheg@web.de> 1212241571 +0200
- Message:
[bug] DS-Url in Javascript-Aktionen von PMs bei angeschalteten Cookies gefixt
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9fc4d87 |
r4a45c12 |
|
| 21 | 21 | //<![CDATA[ |
|---|
| 22 | 22 | function PlayerList() { |
|---|
| 23 | | fenster1=window.open("./ds?module=plist&sess={global.sess}&compopup=1", |
|---|
| | 23 | fenster1=window.open(getDsUrl()+"?module=plist&sess={global.sess}&compopup=1", |
|---|
| 24 | 24 | "Spielerliste", |
|---|
| 25 | 25 | "width=350,height=400,locationbar=0,menubar=0,scrollbars=1,statusbar=0,toolbar=0,resizeable=yes,directories=0"); |
|---|
| … | … | |
| 27 | 27 | |
|---|
| 28 | 28 | function BBCodeInfo() { |
|---|
| 29 | | fenster2=window.open("./ds?module=bbcodeview&sess={global.sess}", |
|---|
| | 29 | fenster2=window.open(getDsUrl()+"?module=bbcodeview&sess={global.sess}", |
|---|
| 30 | 30 | "BBCodes", |
|---|
| 31 | 31 | "width=550,height=400,locationbar=0,menubar=0,scrollbars=1,statusbar=0,toolbar=0,resizeable=yes,directories=0"); |
|---|
| … | … | |
| 159 | 159 | <!-- |
|---|
| 160 | 160 | function showpm(pmid) { |
|---|
| 161 | | pmviewer.location.href = "./ds?module=comm&sess={global.sess}&action=showPm&pmid="+pmid; |
|---|
| | 161 | pmviewer.location.href = getDsUrl()+"?module=comm&sess={global.sess}&action=showPm&pmid="+pmid; |
|---|
| 162 | 162 | |
|---|
| 163 | 163 | if( $('pm'+pmid) != null ) { |
|---|
| … | … | |
| 208 | 208 | $("inbox_waiter").style.display = "block"; |
|---|
| 209 | 209 | |
|---|
| 210 | | var url = location.href; |
|---|
| | 210 | var url = getDsUrl(); |
|---|
| 211 | 211 | // Oh ich liebe das toooolle caching vom *piep* ie |
|---|
| 212 | 212 | var params = 'module={global.module}&sess={global.sess}&action=move&ordner={ordner.parent}&moveto='+ordnerid+"&pm_"+pmid+"="+pmid+"&antiiecachingtimestamp="+(new Date().getTime()); |
|---|
| … | … | |
| 461 | 461 | <!-- |
|---|
| 462 | 462 | function showpm(pmid) { |
|---|
| 463 | | pmviewer.location.href = "./ds?module=comm&sess={global.sess}&action=showPm&pmid="+pmid; |
|---|
| | 463 | pmviewer.location.href = getDsUrl()+"?module=comm&sess={global.sess}&action=showPm&pmid="+pmid; |
|---|
| 464 | 464 | } |
|---|
| 465 | 465 | --> |
|---|