Topic: Only posts blank article from 1970
Hi,
I am using the latest version of cutenews and I haven't posted an article on my website for a while.
I tried to add some new news and all that pops up is a blank article stating it was posted in 1970.
I haven't changed the code, I hadn't even upgraded when this happened (I upgraded afterwards just in case but the same issue occurs).
When I check the example it loads all articles perfectly, however any new article won't load in my website.
Wondering if anybody has seen this before or can help?
So you can see what I mean, go to gurusports.com.au/perform5.php - the top two articles are blank and state they were posted 01 Jan 1970.
Current script is:
<?php
if ($_GET['search'])
{
include ("cutenews/search.php");
}
elseif ($_GET['do'] == 'archives')
{
include ("cutenews/show_archives.php");
}
else
{
include ("cutenews/show_news.php");
}
?>