summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-10-26 05:31:14 +0000
committerDries Buytaert <dries@buytaert.net>2006-10-26 05:31:14 +0000
commitcb8be5f82182998bfb5a69ef10a5354e1ae2accd (patch)
tree385b42471eabd340e844b891ac9b111ed04babcf /modules/node/node.module
parent13232aba9738f001c91ace7b23061418591303bb (diff)
downloadbrdo-cb8be5f82182998bfb5a69ef10a5354e1ae2accd.tar.gz
brdo-cb8be5f82182998bfb5a69ef10a5354e1ae2accd.tar.bz2
- Patch #89285 by profix: code simplifications.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 373dbca26..b8582ae00 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -783,7 +783,7 @@ function node_search($op = 'search', $keys = NULL) {
// Output form for defining rank factor weights.
$form['content_ranking'] = array('#type' => 'fieldset', '#title' => t('Content ranking'));
$form['content_ranking']['#theme'] = 'node_search_admin';
- $form['content_ranking']['info'] = array('#type' => 'markup', '#value' => '<em>'. t('The following numbers control which properties the content search should favor when ordering the results. Higher numbers mean more influence, zero means the property is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.') .'</em>');
+ $form['content_ranking']['info'] = array('#value' => '<em>'. t('The following numbers control which properties the content search should favor when ordering the results. Higher numbers mean more influence, zero means the property is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.') .'</em>');
$ranking = array('node_rank_relevance' => t('Keyword relevance'),
'node_rank_recent' => t('Recently posted'));