In the Asset Manager search window, let the title of the asset be a link to view the asset. Fixes bug #12048.
This commit is contained in:
parent
e04208e3a2
commit
116a3c21ca
2 changed files with 7 additions and 5 deletions
|
|
@ -8,6 +8,7 @@
|
||||||
- Metadata is now versioned
|
- Metadata is now versioned
|
||||||
- Metadata fields can be restricted by asset class
|
- Metadata fields can be restricted by asset class
|
||||||
- fixed #12049: gotcha: 7.10.9 needs perl > 5.8.8
|
- fixed #12049: gotcha: 7.10.9 needs perl > 5.8.8
|
||||||
|
- fixed #12048: Asset Manager Search
|
||||||
|
|
||||||
7.10.9
|
7.10.9
|
||||||
- fixed #12030: Calendar Feed Time Zone Issue
|
- fixed #12030: Calendar Feed Time Zone Issue
|
||||||
|
|
|
||||||
|
|
@ -615,11 +615,11 @@ sub www_search {
|
||||||
# The markup for a single asset
|
# The markup for a single asset
|
||||||
my $row_markup = q{<tr %s ondblclick="WebGUI.AssetManager.toggleRow( this )">}
|
my $row_markup = q{<tr %s ondblclick="WebGUI.AssetManager.toggleRow( this )">}
|
||||||
. q{<td class="center"><input type="checkbox" name="assetId" value="%s" onchange="WebGUI.AssetManager.toggleHighlightForRow( this )" /></td>}
|
. q{<td class="center"><input type="checkbox" name="assetId" value="%s" onchange="WebGUI.AssetManager.toggleHighlightForRow( this )" /></td>}
|
||||||
. q{<td class="center">%s</td>}
|
. q{<td class="center">%s</td>} #Edit
|
||||||
. q{<td>%s</td>}
|
. q{<td><a href="%s">%s</a></td>} #URL/Title as link
|
||||||
. q{<td><img src="%s" /> %s</td>}
|
. q{<td><img src="%s" /> %s</td>} #Type
|
||||||
. q{<td class="center">%s</td>}
|
. q{<td class="center">%s</td>} #Revision Date
|
||||||
. q{<td class="right">%s</td>}
|
. q{<td class="right">%s</td>} #Lock
|
||||||
. q{<td class="center"><a href="%s?func=manageRevisions">%s</a></td>}
|
. q{<td class="center"><a href="%s?func=manageRevisions">%s</a></td>}
|
||||||
. q{</tr>}
|
. q{</tr>}
|
||||||
;
|
;
|
||||||
|
|
@ -629,6 +629,7 @@ sub www_search {
|
||||||
alt
|
alt
|
||||||
assetId
|
assetId
|
||||||
editLink
|
editLink
|
||||||
|
url
|
||||||
title
|
title
|
||||||
iconUrl type
|
iconUrl type
|
||||||
revisionDate
|
revisionDate
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue