mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Only show comments and such if an individual post identifier is given.
git-svn-id: https://develop.svn.wordpress.org/trunk@553 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+5
-1
@@ -306,7 +306,11 @@ if ($preview) {
|
||||
$posts = $wpdb->get_results($request);
|
||||
|
||||
if (1 == count($posts)) {
|
||||
$more = 1; $c = 1; $single = 1;
|
||||
if ($id || $name) {
|
||||
$more = 1;
|
||||
$c = 1;
|
||||
$single = 1;
|
||||
}
|
||||
if ($s) { // If they were doing a search and got one result
|
||||
header('Location: ' . get_permalink($posts[0]->ID));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user