From 174aa41da0cdd8fde3c5daf304c372e5009331db Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 15 Jun 2009 10:10:47 +0000 Subject: - Patch #491978 by Berdir: remove unnecessary &s. --- modules/node/content_types.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/node') diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc index c611f6753..6717d5743 100644 --- a/modules/node/content_types.inc +++ b/modules/node/content_types.inc @@ -389,12 +389,12 @@ function node_node_type($op, $info) { * Resets all of the relevant fields of a module-defined node type to their * default values. * - * @param &$type + * @param $type * The node type to reset. The node type is passed back by reference with its * resetted values. If there is no module-defined info for this node type, * then nothing happens. */ -function node_type_reset(&$type) { +function node_type_reset($type) { $info_array = module_invoke_all('node_info'); if (isset($info_array[$type->orig_type])) { $info_array[$type->orig_type]['type'] = $type->orig_type; -- cgit v1.2.3