0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
concrete5
/
5.6.0.2-2
/
standard
/
htdocs
/
concrete
/
tools
/
[
Home
]
File: newsflow.php
<?php defined('C5_EXECUTE') or die("Access Denied."); Loader::library('newsflow'); if (Loader::helper('validation/numbers')->integer($_REQUEST['cID'])) { $ed = Newsflow::getEditionByID($_REQUEST['cID']); if (is_object($ed)) { print $ed->getContent(); } } else if (isset($_REQUEST['cPath'])) { $ed = Newsflow::getEditionByPath($_REQUEST['cPath']); if (is_object($ed)) { print $ed->getContent(); } }