From 32989e14dba16192c69cafa6f69138e597311b27 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Wed, 12 Feb 2003 21:37:56 +0000 Subject: - Fixed blog.module to accept blog/name URLs as well as blog/id - Changed the RewriteRule in .htaccess. - Fixed form_select() matching incorrectly. - Added missing $Id$ to menu.inc --- includes/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/common.inc') diff --git a/includes/common.inc b/includes/common.inc index 8a9b30994..1ab18b8df 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -742,7 +742,7 @@ function form_textarea($title, $name, $value, $cols, $rows, $description = 0) { function form_select($title, $name, $value, $options, $description = 0, $extra = 0, $multiple = 0) { if (count($options) > 0) { foreach ($options as $key=>$choice) { - $select .= ""; + $select .= ""; } return form_item($title, "", $description); } -- cgit v1.2.3