diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 17:46:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 17:46:59 -0400 |
commit | 798df04aa5adbb660e85667439abd4309fcf8bd2 (patch) | |
tree | fb2b64889b7f4ee273f552bac4f6acaaaaa0431b | |
parent | 2b80f84fe244d0fae5c1cc258e40fa129743e2a4 (diff) |
missing comma in people search
darcs-hash:20080709214659-84dde-86ff362aa1b7e7fd7194e9d7dd33cff78c2f05c9.gz
-rw-r--r-- | actions/peoplesearch.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 59c756d73..661f4fdf7 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -43,7 +43,7 @@ class PeoplesearchAction extends Action { 'action' => common_local_url('peoplesearch'))); common_element_start('p'); common_element('input', array('name' => 'q', - 'id' => 'q' + 'id' => 'q', 'type' => 'text', 'class' => 'input_text', 'value' => ($q) ? $q : '')); |