4.7.x
Steven Wittens 2005-07-29 08:18:20 +00:00
parent 452f236fcc
commit aa2de74fa2
5 changed files with 0 additions and 9 deletions

View File

@ -450,7 +450,6 @@ function bootstrap_invoke_all($op) {
* TRUE if the item is loaded or has already been loaded.
*/
function drupal_load($type, $name) {
// print $name. '<br />';
static $files = array();
if (isset($files[$type][$name])) {

View File

@ -1676,7 +1676,6 @@ function _comment_update_node_statistics($nid) {
// comments exist
if ($count > 0) {
$node = node_load($nid);
$last_reply = db_fetch_object(db_query_range('SELECT cid, name, timestamp, uid FROM {comments} WHERE nid = %d AND status = %d ORDER BY cid DESC', $nid, COMMENT_PUBLISHED, 0, 1));
db_query("UPDATE {node_comment_statistics} SET comment_count = %d, last_comment_timestamp = %d, last_comment_name = '%s', last_comment_uid = %d WHERE nid = %d", $count, $last_reply->timestamp, $last_reply->uid ? NULL : $last_reply->name, $last_reply->uid, $nid);
}

View File

@ -1676,7 +1676,6 @@ function _comment_update_node_statistics($nid) {
// comments exist
if ($count > 0) {
$node = node_load($nid);
$last_reply = db_fetch_object(db_query_range('SELECT cid, name, timestamp, uid FROM {comments} WHERE nid = %d AND status = %d ORDER BY cid DESC', $nid, COMMENT_PUBLISHED, 0, 1));
db_query("UPDATE {node_comment_statistics} SET comment_count = %d, last_comment_timestamp = %d, last_comment_name = '%s', last_comment_uid = %d WHERE nid = %d", $count, $last_reply->timestamp, $last_reply->uid ? NULL : $last_reply->name, $last_reply->uid, $nid);
}

View File

@ -648,9 +648,6 @@ function search_form($action = '', $keys = '', $type = null, $prompt = null) {
if (!$action) {
$action = url('search/'. $type);
}
if (!$type) {
$type = 'node';
}
if (is_null($prompt)) {
$prompt = t('Enter your keywords');
}

View File

@ -648,9 +648,6 @@ function search_form($action = '', $keys = '', $type = null, $prompt = null) {
if (!$action) {
$action = url('search/'. $type);
}
if (!$type) {
$type = 'node';
}
if (is_null($prompt)) {
$prompt = t('Enter your keywords');
}