summaryrefslogtreecommitdiff
path: root/inc/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/template.php')
-rw-r--r--inc/template.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/inc/template.php b/inc/template.php
index ad9a454b4..7ac3437fb 100644
--- a/inc/template.php
+++ b/inc/template.php
@@ -739,12 +739,6 @@ function tpl_youarehere($sep=' » '){
$parts = explode(':', $ID);
$count = count($parts);
- if($GLOBALS['ACT'] == 'search')
- {
- $parts = array($conf['start']);
- $count = 1;
- }
-
echo '<span class="bchead">'.$lang['youarehere'].': </span>';
// always print the startpage
@@ -1164,7 +1158,7 @@ function tpl_actiondropdown($empty='',$button='&gt;'){
if($REV) echo '<input type="hidden" name="rev" value="'.$REV.'" />';
echo '<input type="hidden" name="sectok" value="'.getSecurityToken().'" />';
- echo '<select name="do" id="action__selector" class="edit">';
+ echo '<select name="do" class="edit quickselect">';
echo '<option value="">'.$empty.'</option>';
echo '<optgroup label=" &mdash; ">';
@@ -1204,7 +1198,7 @@ function tpl_actiondropdown($empty='',$button='&gt;'){
echo '</optgroup>';
echo '</select>';
- echo '<input type="submit" value="'.$button.'" id="action__selectorbtn" />';
+ echo '<input type="submit" value="'.$button.'" />';
echo '</form>';
}