Actions
Bug #268
closed500 Error on "All Puppet Classes"
Difficulty:
Triaged:
No
Description
A 500 error is generated when viewing a host and the user clicks "All Puppet Classes."
It appears that the ERB has bad syntax -- the first line reads:
<% title "All Puppet Classes for #{host}" %>
This should read:
<% title "All Puppet Classes for #{@host.name}" %>
Correcting the line in the ERB fixes the problem.
Actions