Changeset cb00f5f56926572da5325ad9862bcb690780414a
- Timestamp:
- 12/28/06 16:46:00
(2 years ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1167320760 +0100
- git-parent:
[d0f8c7911a1883f7f4282c2c4e8b5f65e21b2e48]
- git-author:
- Christopher Jung <bktheg@web.de> 1167320760 +0100
- Message:
Ein paar Fixes
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8c8c05d |
rcb00f5f |
|
| 387 | 387 | |
|---|
| 388 | 388 | t.parse("itemdetails.entrylist", "itemdetails.entry", true); |
|---|
| | 389 | |
|---|
| | 390 | break; |
|---|
| 389 | 391 | } |
|---|
| 390 | 392 | /* |
|---|
| … | … | |
| 406 | 408 | |
|---|
| 407 | 409 | t.parse("itemdetails.entrylist", "itemdetails.entry", true); |
|---|
| | 410 | |
|---|
| | 411 | break; |
|---|
| 408 | 412 | } |
|---|
| 409 | 413 | /* |
|---|
| … | … | |
| 479 | 483 | } |
|---|
| 480 | 484 | } |
|---|
| | 485 | |
|---|
| | 486 | break; |
|---|
| 481 | 487 | } |
|---|
| 482 | 488 | /* |
|---|
| … | … | |
| 601 | 607 | } |
|---|
| 602 | 608 | } |
|---|
| | 609 | |
|---|
| | 610 | break; |
|---|
| 603 | 611 | } |
|---|
| 604 | 612 | /* |
|---|
| … | … | |
| 631 | 639 | t.parse("itemdetails.entrylist", "itemdetails.entry", true); |
|---|
| 632 | 640 | } |
|---|
| | 641 | |
|---|
| | 642 | break; |
|---|
| 633 | 643 | } |
|---|
| 634 | 644 | } // Ende switch |
|---|
| … | … | |
| 644 | 654 | Database db = getDatabase(); |
|---|
| 645 | 655 | |
|---|
| 646 | | Cargo owncargo = new Cargo( Cargo.Type.STRING, db.first("SELECT cargo FROM stats_user_cargo WHERE user_id=",user.getID()).getString("cargo")); |
|---|
| | 656 | SQLResultRow ownCargoRow = db.first("SELECT cargo FROM stats_user_cargo WHERE user_id=",user.getID()); |
|---|
| | 657 | Cargo owncargo = null; |
|---|
| | 658 | if( !ownCargoRow.isEmpty() ) { |
|---|
| | 659 | owncargo = new Cargo( Cargo.Type.STRING, ownCargoRow.getString("cargo")); |
|---|
| | 660 | } |
|---|
| | 661 | else { |
|---|
| | 662 | owncargo = new Cargo(); |
|---|
| | 663 | } |
|---|
| 647 | 664 | |
|---|
| 648 | 665 | t.set_var("iteminfo.knownlist", 1); |
|---|
| r248151c |
rcb00f5f |
|
| 177 | 177 | <!-- |
|---|
| 178 | 178 | function showpm(pmid) { |
|---|
| 179 | | if( $('pm'+pmid) != null ) { |
|---|
| 180 | | pmviewer.location.href = "./main.php?module=comm&sess={global.sess}&action=showPm&pmid="+pmid; |
|---|
| 181 | | |
|---|
| 182 | | $('pm'+pmid).innerHTML = ""; |
|---|
| | 179 | pmviewer.location.href = "./main.php?module=comm&sess={global.sess}&action=showPm&pmid="+pmid; |
|---|
| | 180 | |
|---|
| | 181 | if( $('pm'+pmid) != null ) { |
|---|
| | 182 | $('pm'+pmid).firstChild.nodeValue = ""; |
|---|
| 183 | 183 | } |
|---|
| 184 | 184 | } |
|---|
| … | … | |
| 277 | 277 | </div> |
|---|
| 278 | 278 | <!-- Inhalt --> |
|---|
| 279 | | <div style="position:absolute; top:0px; left:0px; height:240px; overflow:auto; overflow-x:hidden; z-index:1"> |
|---|
| | 279 | <div style="position:absolute; top:0px; left:0px; width:100%; height:240px; overflow:auto; overflow-x:hidden; z-index:1"> |
|---|
| 280 | 280 | <table class="noBorderX" width="95%"> |
|---|
| 281 | 281 | <tr> |
|---|
| … | … | |
| 353 | 353 | </td> |
|---|
| 354 | 354 | <td class="noBorderX"> |
|---|
| 355 | | <span id="pm{pm.id}" style="color:yellow; font-size:10px"> |
|---|
| 356 | | {if pm.new} |
|---|
| 357 | | NEU |
|---|
| 358 | | {/endif} |
|---|
| 359 | | </span> |
|---|
| 360 | | <span style="color:yellow; font-size:10px"> |
|---|
| 361 | | {if pm.kommentar} |
|---|
| 362 | | [K] |
|---|
| 363 | | {/endif} |
|---|
| 364 | | </span> |
|---|
| | 355 | {if pm.new}<span id="pm{pm.id}" style="color:yellow; font-size:10px">NEU</span>{/endif} |
|---|
| | 356 | {if pm.kommentar}<span style="color:yellow; font-size:10px">[K]</span>{/endif} |
|---|
| 365 | 357 | </td> |
|---|
| 366 | 358 | <td class="noBorderX"> |
|---|
| 367 | 359 | <div id="inbox_pm{pm.id}" style=";width:100%" class="inbox_pm"> |
|---|
| 368 | | <a class="profile" {if pm.flags.admin}style="color:orange"{/endif} href="javascript:showpm({pm.id});"> |
|---|
| 369 | | {pm.title} |
|---|
| 370 | | </a> |
|---|
| | 360 | <a class="profile" {if pm.flags.admin}style="color:orange"{/endif} href="javascript:showpm({pm.id});"> |
|---|
| | 361 | {pm.title} |
|---|
| | 362 | </a> |
|---|
| 371 | 363 | </div> |
|---|
| 372 | 364 | <script type="text/javascript" language="javascript"> |
|---|