Drupal Development Blog is brought to you by Face 2 Interface, home of open source applications for your website.
Drupal Development Blog is brought to you by Face 2 Interface, home of open source applications for your website.
I've been following along with the tutorial on drupal.org and it was pretty easy to get done.
There were only two issues that came up :
function onthisdate_block($op='list', $delta=0) {
[snip]
$query = "SELECT nid, title, created FROM {node} WHERE created <= '" . $end_time . "'";
/*
$query = "SELECT nid, title, created FROM {node} WHERE created >= '" . $start_time .
"' AND created <= '". $end_time . "'";
*/
[snip]
if ($block_content == '') {
$block_content = "no content from a week ago, return query eq $query";
// return;
}
[snip]
} // end onthisdate_block