Changes

Here are some changes I made to the default code:

In /wp-includes/post.php, I disabled setting posts as ‘future’ by commenting out this section around line 660:
/* theWord change... don't make them "future posts"
if ( 'publish' == $post_status ) {
$now = gmdate('Y-m-d H:i:59');
if ( mysql2date('U', $post_date_gmt) > mysql2date('U', $now) )
$post_status = 'future';
}
*/

PodPress uses one name for the author of all the posts. Since each of mine come from a different person, I changed podpress_feed_functions.php line 210:
# echo ''.podPress_feedSafeContent($post->podPressPostSpecific['itunes:author'], true).''."\n";
echo ''. get_the_author() .''."\n";

I have also changed the log in in file wp-login.php. From:
case 'login' :
default:
if ( isset( $_REQUEST['redirect_to'] ) )
$redirect_to = $_REQUEST['redirect_to'];
else
$redirect_to = admin_url();

to:
case 'login' :
default:
if ( isset( $_REQUEST['redirect_to'] ) )
$redirect_to = $_REQUEST['redirect_to'];
else
$redirect_to = "?preach=schedule";

Leave a Reply

Your email address will not be published. Required fields are marked *