commit af84fd82250f72beefefec2897291e11ed1944aa parent 9195aa657c5ee2385b3b0706c4d9b880b48a2dd1 Author: MTRNord <mtrnord1@gmail.com> Date: Sat, 28 Feb 2015 21:51:56 +0100 load ids Diffstat:
| M | themes/jumbotron/admin.php | | | 12 | +++++++++--- |
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/themes/jumbotron/admin.php b/themes/jumbotron/admin.php @@ -223,9 +223,15 @@ foreach($langs as $prio => $lang) { <th>Short Description</th> </tr> <tr> - <td>Eve</td> - <td>Jackson</td> - <td>94</td> + <?php + include($root . '/core/backend/blog/posts.php'); + include($root . '/core/config/connect.db.inc.php'); + foreach $post_id_clean as $id{ + echo "<td>$id</td>"; + echo "<td>Jackson</td>"; + echo "<td>94</td>"; + } + ?> </tr> </table> </div>