2016-08-30 18:10:44 +02:00

16 lines
349 B
PHP

<?php
include(dirname(__FILE__).'/../../config/config.inc.php');
require_once(__DIR__.'/classes/GuidePost.php');
$id_lang = Tools::getValue('id_lang', 1);
$post = new GuidePost((int)(Tools::getValue('id_guide_post')));
if (Validate::isLoadedObject($post)) {
global $cookie;
echo $post->meta_title[$id_lang];
echo $post->content[$id_lang];
}