2003-12-11 01:22:36 +01:00
< ? php
2004-05-12 09:55:37 +02:00
if ( ! file_exists ( dirname ( __FILE__ ) . '/' . 'wp-config.php' ))
2004-05-14 22:46:05 +02:00
die ( " There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://wordpress.org/docs/faq/#wp-config'>We got it</a>. You can <a href='wp-admin/install-config.php'>create a <code>wp-config.php</code> file through a web interface</a>, but this doesn't work for all server setups. The safest way is to manually create the file. " );
2003-12-11 01:22:36 +01:00
2004-05-12 09:55:37 +02:00
require_once ( dirname ( __FILE__ ) . '/' . '/wp-config.php' );
2003-12-11 01:22:36 +01:00
2004-05-14 22:46:05 +02:00
require_once ( dirname ( __FILE__ ) . '/' . 'wp-includes/wp-l10n.php' );
2004-05-09 07:54:17 +02:00
// Process PATH_INFO, if set.
2004-02-17 03:50:57 +01:00
$path_info = array ();
if ( ! empty ( $_SERVER [ 'PATH_INFO' ])) {
// Fetch the rewrite rules.
$rewrite = rewrite_rules ( 'matches' );
$pathinfo = $_SERVER [ 'PATH_INFO' ];
// Trim leading '/'.
$pathinfo = preg_replace ( " !^/! " , '' , $pathinfo );
if ( ! empty ( $rewrite )) {
// Get the name of the file requesting path info.
2004-04-21 00:56:47 +02:00
$req_uri = $_SERVER [ 'REQUEST_URI' ];
2004-02-17 03:50:57 +01:00
$req_uri = str_replace ( $pathinfo , '' , $req_uri );
$req_uri = preg_replace ( " !/+ $ ! " , '' , $req_uri );
$req_uri = explode ( '/' , $req_uri );
$req_uri = $req_uri [ count ( $req_uri ) - 1 ];
// Look for matches.
$pathinfomatch = $pathinfo ;
foreach ( $rewrite as $match => $query ) {
// If the request URI is the anchor of the match, prepend it
// to the path info.
2004-03-14 17:43:55 +01:00
if (( ! empty ( $req_uri )) && ( strpos ( $match , $req_uri ) === 0 )) {
2004-02-17 03:50:57 +01:00
$pathinfomatch = $req_uri . '/' . $pathinfo ;
}
if ( preg_match ( " !^ $match ! " , $pathinfomatch , $matches )) {
// Got a match.
// Trim the query of everything up to the '?'.
$query = preg_replace ( " !^.+ \ ?! " , '' , $query );
// Substitute the substring matches into the query.
eval ( " \$ query = \" $query\ " ; " );
// Parse the query.
parse_str ( $query , $path_info );
}
}
}
}
2004-05-05 09:34:41 +02:00
$wpvarstoreset = array ( 'm' , 'p' , 'posts' , 'w' , 'cat' , 'withcomments' , 's' , 'search' , 'exact' , 'sentence' , 'poststart' , 'postend' , 'preview' , 'debug' , 'calendar' , 'page' , 'paged' , 'more' , 'tb' , 'pb' , 'author' , 'order' , 'orderby' , 'year' , 'monthnum' , 'day' , 'hour' , 'minute' , 'second' , 'name' , 'category_name' , 'feed' , 'author_name' );
2003-12-11 01:22:36 +01:00
2004-01-27 07:35:07 +01:00
for ( $i = 0 ; $i < count ( $wpvarstoreset ); $i += 1 ) {
$wpvar = $wpvarstoreset [ $i ];
if ( ! isset ( $$wpvar )) {
2004-04-21 00:56:47 +02:00
if ( empty ( $_POST [ $wpvar ])) {
if ( empty ( $_GET [ $wpvar ]) && empty ( $path_info [ $wpvar ])) {
2004-01-27 07:35:07 +01:00
$$wpvar = '' ;
2004-04-21 00:56:47 +02:00
} elseif ( ! empty ( $_GET [ $wpvar ])) {
$$wpvar = $_GET [ $wpvar ];
2004-02-17 03:50:57 +01:00
} else {
$$wpvar = $path_info [ $wpvar ];
2004-01-27 07:35:07 +01:00
}
} else {
2004-04-21 00:56:47 +02:00
$$wpvar = $_POST [ $wpvar ];
2004-01-27 07:35:07 +01:00
}
}
}
2003-12-11 01:22:36 +01:00
2004-05-09 07:54:17 +02:00
// Sending HTTP headers
2004-02-22 04:29:54 +01:00
if ( ! isset ( $doing_rss ) || ! $doing_rss ) {
// It is presumptious to think that WP is the only thing that might change on the page.
@ header ( " Expires: Mon, 26 Jul 1997 05:00:00 GMT " ); // Date in the past
@ header ( " Last-Modified: " . gmdate ( " D, d M Y H:i:s " ) . " GMT " ); // always modified
@ header ( " Cache-Control: no-store, no-cache, must-revalidate " ); // HTTP/1.1
@ header ( " Cache-Control: post-check=0, pre-check=0 " , false );
@ header ( " Pragma: no-cache " ); // HTTP/1.0
2004-02-26 17:15:48 +01:00
@ header ( 'X-Pingback: ' . get_settings ( 'siteurl' ) . '/xmlrpc.php' );
2004-02-22 04:29:54 +01:00
} else {
2004-03-31 05:54:58 +02:00
2004-02-22 04:29:54 +01:00
// We're showing a feed, so WP is indeed the only thing that last changed
2004-03-31 23:19:58 +02:00
$wp_last_modified = mysql2date ( 'D, d M Y H:i:s' , get_lastpostmodified ( 'GMT' )) . ' GMT' ;
$wp_etag = '"' . md5 ( $wp_last_modified ) . '"' ;
@ header ( 'Last Modified: ' . $wp_last_modified );
@ header ( 'ETag: ' . $wp_etag );
2004-02-26 17:15:48 +01:00
@ header ( 'X-Pingback: ' . get_settings ( 'siteurl' ) . '/xmlrpc.php' );
2004-03-31 05:54:58 +02:00
2004-03-31 23:19:58 +02:00
// Support for Conditional GET
2004-05-10 09:51:50 +02:00
if ( isset ( $_SERVER [ 'HTTP_IF_MODIFIED_SINCE' ])) $client_last_modified = $_SERVER [ 'HTTP_IF_MODIFIED_SINCE' ];
else $client_last_modified = false ;
if ( isset ( $_SERVER [ 'HTTP_IF_NONE_MATCH' ])) $client_etag = stripslashes ( $_SERVER [ 'HTTP_IF_NONE_MATCH' ]);
else $client_etag = false ;
2004-03-31 23:19:58 +02:00
if ( ( $client_last_modified && $client_etag ) ?
(( $client_last_modified == $wp_last_modified ) && ( $client_etag == $wp_etag )) :
(( $client_last_modified == $wp_last_modified ) || ( $client_etag == $wp_etag )) ) {
header ( 'HTTP/1.1 304 Not Modified' );
echo " \r \n \r \n " ;
exit ;
2004-03-31 05:54:58 +02:00
}
2004-03-31 23:19:58 +02:00
2004-02-22 04:29:54 +01:00
}
2003-12-11 01:22:36 +01:00
2004-05-09 07:54:17 +02:00
// Getting settings from DB
2003-12-11 01:22:36 +01:00
if ( isset ( $doing_rss ) && $doing_rss == 1 )
$posts_per_page = get_settings ( 'posts_per_rss' );
if ( ! isset ( $posts_per_page ) || $posts_per_page == 0 )
$posts_per_page = get_settings ( 'posts_per_page' );
2004-05-18 20:37:57 +02:00
if ( ! isset ( $what_to_show ))
$what_to_show = get_settings ( 'what_to_show' );
2003-12-11 01:22:36 +01:00
$archive_mode = get_settings ( 'archive_mode' );
2003-12-23 22:31:09 +01:00
$use_gzipcompression = get_settings ( 'gzipcompression' );
2003-12-11 01:22:36 +01:00
2004-05-09 07:54:17 +02:00
// First let's clear some variables
2003-12-11 01:22:36 +01:00
$whichcat = '' ;
$whichauthor = '' ;
$result = '' ;
$where = '' ;
$limits = '' ;
$distinct = '' ;
$join = '' ;
if ( $pagenow != 'post.php' ) { timer_start (); }
if ( isset ( $showposts ) && $showposts ) {
$showposts = ( int ) $showposts ;
2004-01-27 07:35:07 +01:00
$posts_per_page = $showposts ;
2003-12-11 01:22:36 +01:00
}
2004-02-25 05:08:54 +01:00
2004-04-24 23:52:24 +02:00
$add_hours = intval ( get_settings ( 'gmt_offset' ));
$add_minutes = intval ( 60 * ( get_settings ( 'gmt_offset' ) - $add_hours ));
2004-03-25 03:15:36 +01:00
$wp_posts_post_date_field = " post_date " ; // "DATE_ADD(post_date, INTERVAL '$add_hours:$add_minutes' HOUR_MINUTE)";
2004-02-25 05:08:54 +01:00
2004-05-05 09:34:41 +02:00
// If a month is specified in the querystring, load that month
if ( '' != $m ) {
$m = '' . preg_replace ( '|[^0-9]|' , '' , $m );
$where .= ' AND YEAR(post_date)=' . substr ( $m , 0 , 4 );
2004-01-27 07:35:07 +01:00
if ( strlen ( $m ) > 5 )
2004-05-05 09:34:41 +02:00
$where .= ' AND MONTH(post_date)=' . substr ( $m , 4 , 2 );
2004-01-27 07:35:07 +01:00
if ( strlen ( $m ) > 7 )
2004-05-05 09:34:41 +02:00
$where .= ' AND DAYOFMONTH(post_date)=' . substr ( $m , 6 , 2 );
2004-01-27 07:35:07 +01:00
if ( strlen ( $m ) > 9 )
2004-05-05 09:34:41 +02:00
$where .= ' AND HOUR(post_date)=' . substr ( $m , 8 , 2 );
2004-01-27 07:35:07 +01:00
if ( strlen ( $m ) > 11 )
2004-05-05 09:34:41 +02:00
$where .= ' AND MINUTE(post_date)=' . substr ( $m , 10 , 2 );
2004-01-27 07:35:07 +01:00
if ( strlen ( $m ) > 13 )
2004-05-05 09:34:41 +02:00
$where .= ' AND SECOND(post_date)=' . substr ( $m , 12 , 2 );
}
if ( '' != $hour ) {
$hour = '' . intval ( $hour );
$where .= " AND HOUR(post_date)=' $hour ' " ;
}
if ( '' != $minute ) {
$minute = '' . intval ( $minute );
$where .= " AND MINUTE(post_date)=' $minute ' " ;
}
2003-12-11 01:22:36 +01:00
2004-05-05 09:34:41 +02:00
if ( '' != $second ) {
$second = '' . intval ( $second );
$where .= " AND SECOND(post_date)=' $second ' " ;
2003-12-11 01:22:36 +01:00
}
2004-05-05 09:34:41 +02:00
if ( '' != $year ) {
2004-01-27 07:35:07 +01:00
$year = '' . intval ( $year );
2004-03-25 03:15:36 +01:00
$where .= " AND YEAR(post_date)=' $year ' " ;
2003-12-11 01:22:36 +01:00
}
2004-05-05 09:34:41 +02:00
if ( '' != $monthnum ) {
2004-01-27 07:35:07 +01:00
$monthnum = '' . intval ( $monthnum );
2004-03-25 03:15:36 +01:00
$where .= " AND MONTH(post_date)=' $monthnum ' " ;
2003-12-11 01:22:36 +01:00
}
2004-05-05 09:34:41 +02:00
if ( '' != $day ) {
2004-01-27 07:35:07 +01:00
$day = '' . intval ( $day );
2004-03-25 03:15:36 +01:00
$where .= " AND DAYOFMONTH(post_date)=' $day ' " ;
2003-12-11 01:22:36 +01:00
}
2004-05-05 09:34:41 +02:00
if ( '' != $name ) {
2004-05-14 14:33:12 +02:00
$name = preg_replace ( '/[^a-z0-9-_]/' , '' , $name );
2004-01-27 07:35:07 +01:00
$where .= " AND post_name = ' $name ' " ;
2003-12-11 01:22:36 +01:00
}
2004-05-05 09:34:41 +02:00
if ( '' != $w ) {
2004-01-27 07:35:07 +01:00
$w = '' . intval ( $w );
2004-03-25 03:15:36 +01:00
$where .= " AND WEEK(post_date, 1)=' $w ' " ;
2003-12-11 01:22:36 +01:00
}
2004-05-09 07:54:17 +02:00
// If a post number is specified, load that post
2003-12-11 01:22:36 +01:00
if (( $p != '' ) && ( $p != 'all' )) {
2004-01-27 07:35:07 +01:00
$p = intval ( $p );
$where = ' AND ID = ' . $p ;
2003-12-11 01:22:36 +01:00
}
2004-05-09 07:54:17 +02:00
// If a search pattern is specified, load the posts that match
2003-12-11 01:22:36 +01:00
if ( ! empty ( $s )) {
2004-01-27 07:35:07 +01:00
$s = addslashes_gpc ( $s );
$search = ' AND (' ;
2004-05-09 07:54:17 +02:00
$s = preg_replace ( '/, +/' , ' ' , $s );
2004-01-27 07:35:07 +01:00
$s = str_replace ( ',' , ' ' , $s );
$s = str_replace ( '"' , ' ' , $s );
$s = trim ( $s );
if ( $exact ) {
$n = '' ;
} else {
$n = '%' ;
}
if ( ! $sentence ) {
$s_array = explode ( ' ' , $s );
$search .= '((post_title LIKE \'' . $n . $s_array [ 0 ] . $n . '\') OR (post_content LIKE \'' . $n . $s_array [ 0 ] . $n . '\'))' ;
for ( $i = 1 ; $i < count ( $s_array ); $i = $i + 1 ) {
$search .= ' AND ((post_title LIKE \'' . $n . $s_array [ $i ] . $n . '\') OR (post_content LIKE \'' . $n . $s_array [ $i ] . $n . '\'))' ;
}
$search .= ' OR (post_title LIKE \'' . $n . $s . $n . '\') OR (post_content LIKE \'' . $n . $s . $n . '\')' ;
$search .= ')' ;
} else {
$search = ' AND ((post_title LIKE \'' . $n . $s . $n . '\') OR (post_content LIKE \'' . $n . $s . $n . '\'))' ;
}
2003-12-11 01:22:36 +01:00
}
2004-05-09 07:54:17 +02:00
// Category stuff
2004-01-27 07:35:07 +01:00
$dogs = $wpdb -> get_results ( " SELECT * FROM $tablecategories WHERE 1=1 " );
foreach ( $dogs as $catt ) {
$cache_categories [ $catt -> cat_ID ] = $catt ;
}
2004-02-03 18:23:06 +01:00
if (( empty ( $cat )) || ( $cat == 'all' ) || ( $cat == '0' ) ||
// Bypass cat checks if fetching specific posts
(
intval ( $year ) || intval ( $monthnum ) || intval ( $day ) || intval ( $w ) ||
intval ( $p ) || ! empty ( $name ) || ! empty ( $s )
)
) {
2004-01-27 07:35:07 +01:00
$whichcat = '' ;
2003-12-11 01:22:36 +01:00
} else {
2004-01-27 07:35:07 +01:00
$cat = '' . urldecode ( $cat ) . '' ;
$cat = addslashes_gpc ( $cat );
if ( stristr ( $cat , '-' )) {
2004-01-31 01:03:51 +01:00
// Note: if we have a negative, we ignore all the positives. It must
// always mean 'everything /except/ this one'. We should be able to do
// multiple negatives but we don't :-(
2004-01-27 07:35:07 +01:00
$eq = '!=' ;
$andor = 'AND' ;
$cat = explode ( '-' , $cat );
$cat = intval ( $cat [ 1 ]);
} else {
$eq = '=' ;
$andor = 'OR' ;
}
$join = " LEFT JOIN $tablepost2cat ON ( $tableposts .ID = $tablepost2cat .post_id) " ;
$cat_array = explode ( ' ' , $cat );
2003-12-11 01:22:36 +01:00
$whichcat .= ' AND (category_id ' . $eq . ' ' . intval ( $cat_array [ 0 ]);
2004-01-27 07:35:07 +01:00
$whichcat .= get_category_children ( $cat_array [ 0 ], ' ' . $andor . ' category_id ' . $eq . ' ' );
2003-12-11 01:22:36 +01:00
for ( $i = 1 ; $i < ( count ( $cat_array )); $i = $i + 1 ) {
2004-01-27 07:35:07 +01:00
$whichcat .= ' ' . $andor . ' category_id ' . $eq . ' ' . intval ( $cat_array [ $i ]);
$whichcat .= get_category_children ( $cat_array [ $i ], ' ' . $andor . ' category_id ' . $eq . ' ' );
2003-12-11 01:22:36 +01:00
}
$whichcat .= ')' ;
2004-01-31 01:03:51 +01:00
if ( $eq == '!=' ) {
2004-05-09 07:54:17 +02:00
$cat = '-' . $cat ; // Put back the knowledge that we are excluding a category.
2004-01-31 01:03:51 +01:00
}
2003-12-11 01:22:36 +01:00
}
// Category stuff for nice URIs
if ( '' != $category_name ) {
2004-01-27 07:35:07 +01:00
if ( stristr ( $category_name , '/' )) {
$category_name = explode ( '/' , $category_name );
if ( $category_name [ count ( $category_name ) - 1 ]) {
2004-05-09 07:54:17 +02:00
$category_name = $category_name [ count ( $category_name ) - 1 ]; // no trailing slash
2004-01-27 07:35:07 +01:00
} else {
2004-05-09 07:54:17 +02:00
$category_name = $category_name [ count ( $category_name ) - 2 ]; // there was a trailling slash
2004-01-27 07:35:07 +01:00
}
}
2004-05-17 00:07:26 +02:00
$category_name = preg_replace ( '|[^a-z0-9-_]|i' , '' , $category_name );
2004-01-27 07:35:07 +01:00
$tables = " , $tablepost2cat , $tablecategories " ;
$join = " LEFT JOIN $tablepost2cat ON ( $tableposts .ID = $tablepost2cat .post_id) LEFT JOIN $tablecategories ON ( $tablepost2cat .category_id = $tablecategories .cat_ID) " ;
$whichcat = " AND (category_nicename = ' $category_name ' " ;
$cat = $wpdb -> get_var ( " SELECT cat_ID FROM $tablecategories WHERE category_nicename = ' $category_name ' " );
$whichcat .= get_category_children ( $cat , " OR category_id = " );
$whichcat .= " ) " ;
2003-12-11 01:22:36 +01:00
}
2004-04-27 05:59:13 +02:00
// Author/user stuff
2004-05-09 07:54:17 +02:00
$users = $wpdb -> get_results ( " SELECT * FROM $tableusers WHERE user_level > 0 " );
2004-04-27 05:59:13 +02:00
foreach ( $users as $user ) {
$cache_userdata [ $user -> ID ] = $user ;
2004-03-19 17:20:49 +01:00
}
2003-12-11 01:22:36 +01:00
if (( empty ( $author )) || ( $author == 'all' ) || ( $author == '0' )) {
2004-01-27 07:35:07 +01:00
$whichauthor = '' ;
2003-12-11 01:22:36 +01:00
} else {
2004-01-27 07:35:07 +01:00
$author = '' . urldecode ( $author ) . '' ;
$author = addslashes_gpc ( $author );
if ( stristr ( $author , '-' )) {
$eq = '!=' ;
$andor = 'AND' ;
$author = explode ( '-' , $author );
$author = '' . intval ( $author [ 1 ]);
} else {
$eq = '=' ;
$andor = 'OR' ;
}
$author_array = explode ( ' ' , $author );
$whichauthor .= ' AND (post_author ' . $eq . ' ' . intval ( $author_array [ 0 ]);
for ( $i = 1 ; $i < ( count ( $author_array )); $i = $i + 1 ) {
$whichauthor .= ' ' . $andor . ' post_author ' . $eq . ' ' . intval ( $author_array [ $i ]);
}
$whichauthor .= ')' ;
2003-12-11 01:22:36 +01:00
}
2004-02-11 05:51:19 +01:00
// Author stuff for nice URIs
if ( '' != $author_name ) {
if ( stristr ( $author_name , '/' )) {
$author_name = explode ( '/' , $author_name );
if ( $author_name [ count ( $author_name ) - 1 ]) {
$author_name = $author_name [ count ( $author_name ) - 1 ]; #no trailing slash
} else {
$author_name = $author_name [ count ( $author_name ) - 2 ]; #there was a trailling slash
}
}
2004-05-17 00:07:26 +02:00
$author_name = preg_replace ( '|[^a-z0-9-_]|' , '' , strtolower ( $author_name ));
2004-02-11 05:51:19 +01:00
$author = $wpdb -> get_var ( " SELECT ID FROM $tableusers WHERE user_nicename=' " . $author_name . " ' " );
$whichauthor .= ' AND (post_author = ' . intval ( $author ) . ')' ;
}
2003-12-11 01:22:36 +01:00
$where .= $search . $whichcat . $whichauthor ;
if (( empty ( $order )) || (( strtoupper ( $order ) != 'ASC' ) && ( strtoupper ( $order ) != 'DESC' ))) {
2004-01-27 07:35:07 +01:00
$order = 'DESC' ;
2003-12-11 01:22:36 +01:00
}
2004-05-09 07:54:17 +02:00
// Order by
2003-12-11 01:22:36 +01:00
if ( empty ( $orderby )) {
2004-01-27 07:35:07 +01:00
$orderby = 'date ' . $order ;
2003-12-11 01:22:36 +01:00
} else {
2004-05-09 07:54:17 +02:00
// Used to filter values
2004-01-27 07:35:07 +01:00
$allowed_keys = array ( 'author' , 'date' , 'category' , 'title' );
$orderby = urldecode ( $orderby );
$orderby = addslashes_gpc ( $orderby );
$orderby_array = explode ( ' ' , $orderby );
if ( ! in_array ( $orderby_array [ 0 ], $allowed_keys )) {
$orderby_array [ 0 ] = 'date' ;
}
$orderby = $orderby_array [ 0 ] . ' ' . $order ;
if ( count ( $orderby_array ) > 1 ) {
for ( $i = 1 ; $i < ( count ( $orderby_array )); $i = $i + 1 ) {
// Only allow certain values for safety
if ( in_array ( $orderby_array [ $i ], $allowed_keys )) {
$orderby .= ',post_' . $orderby_array [ $i ] . ' ' . $order ;
}
}
}
2003-12-11 01:22:36 +01:00
}
if (( ! $whichcat ) && ( ! $m ) && ( ! $p ) && ( ! $w ) && ( ! $s ) && empty ( $poststart ) && empty ( $postend )) {
2004-01-27 07:35:07 +01:00
if ( $what_to_show == 'posts' ) {
$limits = ' LIMIT ' . $posts_per_page ;
} elseif ( $what_to_show == 'days' && empty ( $monthnum ) && empty ( $year ) && empty ( $day )) {
$lastpostdate = get_lastpostdate ();
$lastpostdate = mysql2date ( 'Y-m-d 00:00:00' , $lastpostdate );
$lastpostdate = mysql2date ( 'U' , $lastpostdate );
$otherdate = date ( 'Y-m-d H:i:s' , ( $lastpostdate - (( $posts_per_page - 1 ) * 86400 )));
2004-03-25 03:15:36 +01:00
$where .= " AND post_date > ' $otherdate ' " ;
2004-01-27 07:35:07 +01:00
}
2003-12-11 01:22:36 +01:00
}
if ( ! empty ( $postend ) && ( $postend > $poststart ) && ( ! $m ) && empty ( $monthnum ) && empty ( $year ) && empty ( $day ) && ( ! $w ) && ( ! $whichcat ) && ( ! $s ) && ( ! $p )) {
2004-01-27 07:35:07 +01:00
if ( $what_to_show == 'posts' || ( $what_to_show == 'paged' && ( ! $paged ))) {
$poststart = intval ( $poststart );
$postend = intval ( $postend );
$limposts = $postend - $poststart ;
$limits = ' LIMIT ' . $poststart . ',' . $limposts ;
} elseif ( $what_to_show == 'days' ) {
$poststart = intval ( $poststart );
$postend = intval ( $postend );
$limposts = $postend - $poststart ;
$lastpostdate = get_lastpostdate ();
$lastpostdate = mysql2date ( 'Y-m-d 00:00:00' , $lastpostdate );
$lastpostdate = mysql2date ( 'U' , $lastpostdate );
$startdate = date ( 'Y-m-d H:i:s' , ( $lastpostdate - (( $poststart - 1 ) * 86400 )));
$otherdate = date ( 'Y-m-d H:i:s' , ( $lastpostdate - (( $postend - 1 ) * 86400 )));
2004-03-25 03:15:36 +01:00
$where .= " AND post_date > ' $otherdate ' AND post_date < ' $startdate ' " ;
2004-01-27 07:35:07 +01:00
}
2003-12-11 01:22:36 +01:00
} else {
2004-01-27 07:35:07 +01:00
if (( $what_to_show == 'paged' ) && ( ! $p ) && ( ! $more )) {
if ( $pagenow != 'post.php' ) {
$pgstrt = '' ;
if ( $paged ) {
$pgstrt = ( intval ( $paged ) - 1 ) * $posts_per_page . ', ' ;
}
$limits = 'LIMIT ' . $pgstrt . $posts_per_page ;
} else {
if (( $m ) || ( $p ) || ( $w ) || ( $s ) || ( $whichcat )) {
$limits = '' ;
} else {
$pgstrt = '' ;
if ( $paged ) {
$pgstrt = ( intval ( $paged ) - 1 ) * $posts_per_page . ', ' ;
}
$limits = 'LIMIT ' . $pgstrt . $posts_per_page ;
}
}
}
elseif (( $m ) || ( $p ) || ( $w ) || ( $s ) || ( $whichcat ) || ( $author ) || $monthnum || $year || $day ) {
$limits = '' ;
}
2003-12-11 01:22:36 +01:00
}
if ( $p == 'all' ) {
2004-01-27 07:35:07 +01:00
$where = '' ;
2003-12-11 01:22:36 +01:00
}
2004-04-02 01:09:22 +02:00
$now = gmdate ( 'Y-m-d H:i:59' );
2003-12-11 01:22:36 +01:00
2004-01-07 18:36:54 +01:00
if ( $pagenow != 'post.php' && $pagenow != 'edit.php' ) {
2004-01-27 07:35:07 +01:00
if (( empty ( $poststart )) || ( empty ( $postend )) || ! ( $postend > $poststart )) {
2004-04-02 01:09:22 +02:00
$where .= " AND post_date_gmt <= ' $now ' " ;
2004-01-27 07:35:07 +01:00
}
2003-12-11 01:22:36 +01:00
2004-01-27 07:35:07 +01:00
$distinct = 'DISTINCT' ;
2003-12-11 01:22:36 +01:00
2004-01-27 07:35:07 +01:00
if ( $use_gzipcompression ) {
// gzipping the output of the script
gzip_compression ();
}
2003-12-11 01:22:36 +01:00
}
$where .= ' AND (post_status = "publish"' ;
// Get private posts
if ( isset ( $user_ID ) && ( '' != intval ( $user_ID )))
$where .= " OR post_author = $user_ID AND post_status != 'draft') " ;
else
$where .= ')' ;
2004-01-12 10:35:41 +01:00
$where .= " GROUP BY $tableposts .ID " ;
2003-12-11 01:22:36 +01:00
$request = " SELECT $distinct * FROM $tableposts $join WHERE 1=1 " . $where . " ORDER BY post_ $orderby $limits " ;
if ( $preview ) {
2004-01-27 07:35:07 +01:00
$request = 'SELECT 1-1' ; // dummy mysql query for the preview
// little funky fix for IEwin, rawk on that code
$is_winIE = (( preg_match ( '/MSIE/' , $HTTP_USER_AGENT )) && ( preg_match ( '/Win/' , $HTTP_USER_AGENT )));
if (( $is_winIE ) && ( ! isset ( $IEWin_bookmarklet_fix ))) {
$preview_content = preg_replace ( '/\%u([0-9A-F]{4,4})/e' , " '&#'.base_convert(' \\ 1',16,10).';' " , $preview_content );
}
2003-12-11 01:22:36 +01:00
}
// error_log("$request");
2004-02-03 17:05:59 +01:00
// echo $request;
2003-12-11 01:22:36 +01:00
$posts = $wpdb -> get_results ( $request );
2004-01-08 16:36:45 +01:00
// No point in doing all this work if we didn't match any posts.
if ( $posts ) {
// Get the categories for all the posts
foreach ( $posts as $post ) {
2004-01-27 07:35:07 +01:00
$post_id_list [] = $post -> ID ;
2004-01-08 16:36:45 +01:00
}
$post_id_list = implode ( ',' , $post_id_list );
2004-01-27 07:35:07 +01:00
$dogs = $wpdb -> get_results ( " SELECT DISTINCT
ID , category_id , cat_name , category_nicename , category_description , category_parent
FROM $tablecategories , $tablepost2cat , $tableposts
WHERE category_id = cat_ID AND post_id = ID AND post_id IN ( $post_id_list ) " );
2004-01-08 16:36:45 +01:00
foreach ( $dogs as $catt ) {
2004-01-27 07:35:07 +01:00
$category_cache [ $catt -> ID ][] = $catt ;
2004-01-08 16:36:45 +01:00
}
2004-01-06 13:44:46 +01:00
2004-01-08 16:36:45 +01:00
// Do the same for comment numbers
2004-01-27 07:35:07 +01:00
$comment_counts = $wpdb -> get_results ( " SELECT ID, COUNT( comment_ID ) AS ccount
FROM $tableposts
LEFT JOIN $tablecomments ON ( comment_post_ID = ID AND comment_approved = '1' )
WHERE post_status = 'publish' AND ID IN ( $post_id_list )
GROUP BY ID " );
2004-03-24 15:45:48 +01:00
if ( $comment_counts ) {
foreach ( $comment_counts as $comment_count ) {
$comment_count_cache [ " $comment_count->ID " ] = $comment_count -> ccount ;
}
}
2004-01-06 13:44:46 +01:00
2004-02-26 22:42:47 +01:00
// Get post-meta info
if ( $meta_list = $wpdb -> get_results ( "
SELECT post_id , meta_key , meta_value
FROM $tablepostmeta
WHERE post_id IN ( $post_id_list )
ORDER BY post_id , meta_key
" , ARRAY_A) ) {
// Change from flat structure to hierarchical:
$post_meta_cache = array ();
foreach ( $meta_list as $metarow ) {
$mpid = $metarow [ 'post_id' ];
$mkey = $metarow [ 'meta_key' ];
$mval = $metarow [ 'meta_value' ];
// Force subkeys to be array type:
2004-05-05 23:29:23 +02:00
if ( ! isset ( $post_meta_cache [ $mpid ]) || ! is_array ( $post_meta_cache [ $mpid ]))
2004-02-26 22:42:47 +01:00
$post_meta_cache [ $mpid ] = array ();
2004-05-05 23:29:23 +02:00
if ( ! isset ( $post_meta_cache [ $mpid ][ " $mkey " ]) || ! is_array ( $post_meta_cache [ $mpid ][ " $mkey " ]))
$post_meta_cache [ $mpid ][ " $mkey " ] = array ();
2004-02-26 22:42:47 +01:00
// Add a value to the current pid/key:
$post_meta_cache [ $mpid ][ $mkey ][] = $mval ;
}
}
2004-01-08 16:36:45 +01:00
if ( 1 == count ( $posts )) {
2004-01-27 07:35:07 +01:00
if ( $p || $name ) {
$more = 1 ;
$single = 1 ;
}
2004-05-09 07:47:02 +02:00
if ( $s && empty ( $paged )) { // If they were doing a search and got one result
if ( ! strstr ( $_SERVER [ 'PHP_SELF' ], 'wp-admin' )) // And not in admin section
header ( 'Location: ' . get_permalink ( $posts [ 0 ] -> ID ));
}
2004-01-31 01:03:51 +01:00
}
2004-05-09 07:54:17 +02:00
} // End if posts.
2004-02-05 21:55:50 +01:00
?>