Changeset 1788:915879aff7fb for admin/index.php
- Timestamp:
- 09/11/13 07:35:36 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/index.php
r1770 r1788 162 162 } 163 163 $i++; 164 if ($i > 3) { break; }164 if ($i > 2) { break; } 165 165 } 166 166 $latest_news .= '</dl>'; … … 324 324 if ($i->count() > 0) 325 325 { 326 $dashboardItems .= '<div class="box ">';326 $dashboardItems .= '<div class="box dc-box">'; 327 327 foreach ($i as $v) { 328 328 $dashboardItems .= $v; … … 403 403 } 404 404 405 $class = ' '.(($dashboardItems != '') && ($dashboardContents != '') ? 'two-boxes' : 'one-box');405 //$class = ' '.(($dashboardItems != '') && ($dashboardContents != '') ? 'two-boxes' : 'one-box'); 406 406 407 407 if ($dashboardContents != '' || $dashboardItems != '') { 408 408 echo 409 '<hr />'.409 //'<hr />'. 410 410 '<div id="dashboard-boxes">'; 411 echo ($dashboardContents ? '<div class="db-contents'.$class.'">'.$dashboardContents.'</div>' : ''); 412 echo ($dashboardItems ? '<div class="db-items'.$class.'">'.$dashboardItems.'</div>' : ''); 411 echo 412 '<div class="db-items">'. 413 $dashboardItems.$dashboardContents. 414 '</div>'; 415 //echo ($dashboardContents ? '<div class="db-contents'.$class.'">'.$dashboardContents.'</div>' : ''); 416 //echo ($dashboardItems ? '<div class="db-items'.$class.'">'.$dashboardItems.'</div>' : ''); 413 417 echo 414 418 '</div>';
Note: See TracChangeset
for help on using the changeset viewer.