rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit f7ac059b98851b2721f34cd42d45aecd2da66933
parent 9fedec36fec0f7007fd5b97842968f72b8572fb4
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 16 May 2015 13:44:38 +0200

i think i have found the problem

Diffstat:
Mthemes/jumbotron/admin_pages/posts.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/themes/jumbotron/admin_pages/posts.php b/themes/jumbotron/admin_pages/posts.php @@ -16,7 +16,7 @@ echo "<td>$id</td>"; echo "<td>$post_title</td>"; echo "<td></td>"; - echo "<td><button style=\"background-color: transparent;text-decoration: underline;border: none;color: blue;cursor: pointer;\" formaction=\"admin.php?function=edit&id=$id\" title=\"Edit\">Edit</button> <span class=\"glyphicon glyphicon-pencil\" aria-hidden=\"true\"></span> | <button style=\"background-color: transparent;text-decoration: underline;border: none;color: blue;cursor: pointer;\" formaction=\"admin.php?function=delete&id=$id\" title=\"Delete\">Delete</button> <span class=\"glyphicon glyphicon-trash\" aria-hidden=\"true\"></span></td>"; + echo "<td><a href=\"admin.php?function=edit&id=$id\" title=\"Edit\">Edit</a> <span class=\"glyphicon glyphicon-pencil\" aria-hidden=\"true\"></span> | <a href=\"admin.php?function=delete&id=$id\" title=\"Delete\">Delete</a> <span class=\"glyphicon glyphicon-trash\" aria-hidden=\"true\"></span></td>"; echo "</tr>"; $x = $x+1; $id = $id+1;