Changeset 1589:3a40bf597a64
- Timestamp:
- 08/26/13 16:51:21 (10 years ago)
- Branch:
- default
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/search.php
r1358 r1589 15 15 dcPage::check('usage,contentadmin'); 16 16 17 $q = !empty($_GET['q']) ? $_GET['q'] : null;17 $q = !empty($_GET['q']) ? $_GET['q'] : (!empty($_GET['qx']) ? $_GET['qx'] : null); 18 18 $qtype = !empty($_GET['qtype']) ? $_GET['qtype'] : 'p'; 19 19 if ($qtype != 'c' && $qtype != 'p') { -
admin/style/default.css
r1587 r1589 396 396 overflow: hidden; 397 397 } 398 #search-menu #q {398 #search-menu #qx { 399 399 width: 120px; /* ie < 9 sucks */ 400 400 width: 12rem; -
inc/admin/lib.dc.page.php
r1586 r1589 182 182 183 183 '<form id="search-menu" action="search.php" method="get">'. 184 '<p><label for="q " class="hidden">'.__('Search:').' </label>'.form::field('q',30,255,'').184 '<p><label for="qx" class="hidden">'.__('Search:').' </label>'.form::field('qx',30,255,''). 185 185 '<input type="submit" value="'.__('OK').'" /></p>'. 186 186 '</form>';
Note: See TracChangeset
for help on using the changeset viewer.