fix error
This commit is contained in:
parent
1828059918
commit
9805a190a9
|
@ -232,7 +232,7 @@ class VideoProsController < ApplicationController
|
|||
video_postdate = video_image.postdate.to_s
|
||||
video_category = video_image.category_title
|
||||
video_tags = video_image.tags
|
||||
video_tags = (video_tags.count > 0 ? video_tags.collect{|tag| {video_tag: tag.name}} : [{video_tag: video_category}])
|
||||
video_tags = (video_tags.count > 0 ? video_tags.collect{|tag| {"video_tag" => tag.name}} : [{"video_tag" => video_category}])
|
||||
statuses = video_image.statuses_with_classname
|
||||
video_desc = video_image.desc
|
||||
video_desc_escape = video_desc.gsub('"',""") rescue ""
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
video_scale = (video_image.scale ? video_image.scale : 56.25)
|
||||
video_category = video_image.category_title
|
||||
video_tags = video_image.tags
|
||||
video_tags = (video_tags.count > 0 ? video_tags.collect{|tag| tag.name} : [video_category])
|
||||
video_tags = (video_tags.count > 0 ? video_tags.collect{|tag| {"video_tag" => tag.name}} : [{"video_tag" => video_category}])
|
||||
%>
|
||||
<div class="video_detail">
|
||||
<h3><%= video_title %></h3>
|
||||
|
@ -43,7 +43,7 @@
|
|||
<div class="imglst_desc">
|
||||
<div class="video_group_time"><%= video_post_agency %> | <%= video_postdate %></div>
|
||||
<% video_tags.each do |video_tag| %>
|
||||
<div class="video_tag"><%= video_tag %></div>
|
||||
<div class="video_tag"><%= video_tag['video_tag'] %></div>
|
||||
<% end %>
|
||||
<div class="movie_desc"><%= video_desc %></div>
|
||||
<div class="view_info">
|
||||
|
|
Loading…
Reference in New Issue