rpicms

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

commit e938e428f8142e301eb073361ddc8fccc353a5ec
parent 0a91f301ac7e4e9e120e72f91c160dab5d654068
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sat, 22 Nov 2014 21:14:33 +0100

fixed wrong author id in posts.php

Diffstat:
Mcore/backend/blog/posts.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/backend/blog/posts.php b/core/backend/blog/posts.php @@ -20,7 +20,7 @@ while($daten = $resultat->fetch_object() ){ $post_title = $daten->title; $post_text = $daten->text; - $post_author = $daten->name; + $post_author = $daten->author; $post_date = $daten->date; $post_categrory = $daten->category; }