
remove dependence on jQuery add image delete Admin ui fix for mobile image updates to new style update comments
20 lines
444 B
PHP
20 lines
444 B
PHP
<?php
|
|
/**
|
|
* app/templates/rss/rss.inc.php
|
|
*
|
|
* This is the loader for the rss template.
|
|
*
|
|
* @package TP Blog
|
|
* @version 5.0.1
|
|
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
* @link https://TheTempusProject.com
|
|
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
*/
|
|
namespace TheTempusProject\Templates;
|
|
|
|
class RssLoader extends DefaultLoader {
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
}
|