small fixes to media library, artist now says creator.
This commit is contained in:
parent
2adae84447
commit
e335d6d89f
3 changed files with 7 additions and 3 deletions
|
@ -212,7 +212,7 @@ class LibraryController extends Zend_Controller_Action
|
|||
$search = $this->_getParam('search', null);
|
||||
$this->search_sess->quick_string = $search;
|
||||
|
||||
$categories = array("dc:title", "dc:creator", "dc:source", "ls:type");
|
||||
$categories = array("dc:title", "dc:creator", "dc:source");
|
||||
$keywords = explode(" ", $search);
|
||||
|
||||
$md = array();
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<table id="library_display">
|
||||
<tr>
|
||||
<th><span class="title">Title</span></th>
|
||||
<th><span class="artist">Artist</span></th>
|
||||
<th><span class="artist">Creator</span></th>
|
||||
<th><span class="album">Album</span></th>
|
||||
<th><span class="track">Track</span></th>
|
||||
<th><span class="length">Length</span></th>
|
||||
|
|
|
@ -8,8 +8,12 @@
|
|||
text-align: left;
|
||||
}
|
||||
|
||||
#library_display td {
|
||||
|
||||
}
|
||||
|
||||
#library_display th,
|
||||
#library_display td,
|
||||
.paginationControl {
|
||||
font-size: 13px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue