Author Topic: "view as list" and "All tasks" in Overview in IE 6  (Read 3704 times)

xtender

  • Newbie
  • *
  • Posts: 12
    • View Profile
"view as list" and "All tasks" in Overview in IE 6
« on: October 10, 2008, 04:04:37 am »
These strings layed one on other on Page Overview. In FF and Opera - all right.

xtender

  • Newbie
  • *
  • Posts: 12
    • View Profile
Re: "view as list" and "All tasks" in Overview in IE 6
« Reply #1 on: October 10, 2008, 04:47:52 am »
Fixed by adding table in /application/views/dashboard/index.php
Replace this:
OldNew
Code: [Select]
<div class="dashboard">
<div class="dashWorkspace">
Code: [Select]
<div class="dashboard">
<table border=0><tr><td>
<div class="dashWorkspace">
Code: [Select]
</span><span class="description">
<?php if (active_project() instanceof Project && active_project()->getShowDescriptionInOverview()) echo '-&nbsp;' active_project()->getDescription();else echo '&nbsp;' ?>
</span>
</div>
<div class="dashActions">
<a class="internalLink" href="#" onclick="og.switchToOverview(); return false;">
<div class="viewAsList"><?php echo lang('view as list'?></div></a>
</div>
Code: [Select]
</span><span class="description">
<?php if (active_project() instanceof Project && active_project()->getShowDescriptionInOverview()) echo '-&nbsp;' active_project()->getDescription();else echo '&nbsp;' ?>
</span>
</div>
</td>
<td width="50%">
<div class="dashActions">
<a class="internalLink" href="#" onclick="og.switchToOverview(); return false;">
<div class="viewAsList"><?php echo lang('view as list'?></div></a>
</div>
</td>
</tr>
</table>

cabeza

  • Administrator
  • Hero Member
  • *****
  • Posts: 1004
    • View Profile
    • Feng Office
Re: "view as list" and "All tasks" in Overview in IE 6
« Reply #2 on: October 10, 2008, 09:23:42 am »
Thank you xtender.
Included for 0.9.1.
Marcos