11 lines
215 B
PHP
11 lines
215 B
PHP
|
<?php
|
||
|
// your local timezone, set to "" to disable or for GMT
|
||
|
if (!defined('TIME_ZONE')) {
|
||
|
define("TIME_ZONE", date("O", time()));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Version string.
|
||
|
*/
|
||
|
define("FEEDCREATOR_VERSION", "FeedCreator 1.8");
|