Fix link.
This commit is contained in:
parent
2fa9d31762
commit
0fae8917d2
|
@ -76,7 +76,10 @@ class Research
|
||||||
pd_data = []
|
pd_data = []
|
||||||
fields_to_show.collect do |t|
|
fields_to_show.collect do |t|
|
||||||
if t == "research_title"
|
if t == "research_title"
|
||||||
pd_data << { "data_title" => "<a href=\"#{OrbitHelper.url_to_plugin_show(p.to_param,'personal_research')}\" title=\"#{p.send(t)}\">#{p.send(t)}</a>" }
|
link = OrbitHelper.url_to_plugin_show(p.to_param,'personal_research')
|
||||||
|
url_to_plugin_show_blank = OrbitHelper.instance_variable_get(:@url_to_plugin_show_blank)
|
||||||
|
tmp_title = p.research_title
|
||||||
|
pd_data << { "data_title" => (url_to_plugin_show_blank ? tmp_title : "<a title=\"#{tmp_title}\" href=\"#{link}\" target=\"_blank\">#{tmp_title}") }
|
||||||
elsif t == "research_category"
|
elsif t == "research_category"
|
||||||
pd_data << {"data_title" => (p.research_category.title rescue "")}
|
pd_data << {"data_title" => (p.research_category.title rescue "")}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue