Skip to content

Commit

Permalink
Fixed controller URL
Browse files Browse the repository at this point in the history
  • Loading branch information
conrad committed Mar 11, 2009
1 parent a3a1e03 commit a7281e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/views/posts/newsletter.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<% end %>
<div style="font-family: 'Lucida Grande', Arial, sans-serif; margin: 14px 0 22px 0; font-size: 12px">
<%= link_to 'New Post', { :action => 'new', :category_id => c.id, :only_path => false }, :style => 'color: #0e85ff' %> |
<%= link_to 'View All', { :action => 'list', :category_id => c.id, :only_path => false }, :style => 'color: #0e85ff' %>
<%= link_to 'View All', { :controller => 'categories', :id => c.id, :only_path => false }, :style => 'color: #0e85ff' %>
</div>
<% end %>
</td>
Expand All @@ -56,7 +56,7 @@
<td colspan="2">
<div style="font-family: 'Lucida Grande', Arial, sans-serif; margin: 14px 0 22px 0; font-size: 12px">
<%= link_to 'Make an Announcement', { :action => 'new', :category_id => a.id, :only_path => false }, :style => 'color: #0e85ff' %> |
<%= link_to 'View All', { :action => 'list', :category_id => a.id, :only_path => false }, :style => 'color: #0e85ff' %>
<%= link_to 'View All', { :controller => 'categories', :id => a.id, :only_path => false }, :style => 'color: #0e85ff' %>
</div>
</td>
</tr>
Expand Down
12 changes: 6 additions & 6 deletions config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ development:

production:
email:
server: mail.conradchu.com
port: 2525
server: localhost
port:
domain:
authentication: login
username: smtp+conradchu.com
password: smtprules
delivery_method: :smtp
authentication:
username:
password:
delivery_method: :sendmail

0 comments on commit a7281e4

Please sign in to comment.