diff options
-rw-r--r-- | include/functions_html.inc.php | 48 | ||||
-rw-r--r-- | themes/default/theme.css | 11 |
2 files changed, 0 insertions, 59 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 5827f06a1..8668e68ad 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -231,54 +231,6 @@ function render_comment_content($content) return $content; } -/** - * Returns an HTML list of tags. It can be a multi select field or a list of - * checkboxes. - * - * @param string HTML field name - * @param array selected tag ids - * @return array - */ -function get_html_tag_selection( - $tags, - $fieldname, - $selecteds = array(), - $forbidden_categories = null - ) -{ - global $conf; - - if (count ($tags) == 0 ) - { - return ''; - } - $output = '<ul class="tagSelection">'; - foreach ($tags as $tag) - { - $output.= - '<li>' - .'<label>' - .'<input type="checkbox" name="'.$fieldname.'[]"' - .' value="'.$tag['id'].'"' - ; - - if (in_array($tag['id'], $selecteds)) - { - $output.= ' checked="checked"'; - } - - $output.= - '> ' - .$tag['name'] - .'</label>' - .'</li>' - ."\n" - ; - } - $output.= '</ul>'; - - return $output; -} /** * Callback used for sorting by name. diff --git a/themes/default/theme.css b/themes/default/theme.css index ab298ecb3..99e586b10 100644 --- a/themes/default/theme.css +++ b/themes/default/theme.css @@ -589,17 +589,6 @@ FIELDSET { padding: 0 0.5em 0 0; } -.tagSelection { - margin: 1em 0 !important; -} - -.tagSelection LI { - display:inline-block; - width: 150px; - overflow:hidden; - white-space: nowrap; -} - #fullTagCloud { font-size: 120%; text-align: justify; |