Skip to content

Commit

Permalink
Revert "Request for update page position menu directly in page list."
Browse files Browse the repository at this point in the history
This reverts commit dd0d3c2.
  • Loading branch information
Fred89 committed Sep 10, 2015
1 parent dd0d3c2 commit ae656ec
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions admin/views/manage-pages.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
<table class="table-bordered table-stripped">
<thead>
<tr>
<th style="width: 30%"><?php $Language->p('Title') ?></th>
<th style="width: 40%"><?php $Language->p('Parent') ?></th>
<th style="width: 30%"><?php $Language->p('Position') ?></th>
<th><?php $Language->p('Title') ?></th>
<th><?php $Language->p('Parent') ?></th>
</tr>
</thead>
<tbody>
Expand All @@ -27,7 +26,6 @@
echo '<tr>';
echo '<td>'.($Page->parentKey()?NO_PARENT_CHAR:'').'<a href="'.HTML_PATH_ADMIN_ROOT.'edit-page/'.$Page->key().'">'.($Page->published()?'':'<span class="label label-outline label-red smaller">'.$Language->g('Draft').'</span> ').($Page->title()?$Page->title():'<span class="label label-outline label-blue smaller">'.$Language->g('Empty title').'</span> ').'</a></td>';
echo '<td>'.$parentTitle.'</td>';
echo '<td><input id="jsposition" name="position" type="text" class="width-20" value="' .$Page->position(). '"></td>';
echo '</tr>';
}
}
Expand Down

0 comments on commit ae656ec

Please sign in to comment.