>
> ActionView::TemplateError (interpolation argument name missing in

"{{name}}'s photos") on line #7 of vendor/plugins/community_engine/app/
> views/layouts/application.html.haml:
>

Looks like somewhere (#line 7) you're calling :group_photos.l without
passing it the :name argument.

Have you overridden the page_title method in base_helper? When you call
:group_photos.l, it expects an argument, like:

:group_photos.l :name => @group.name

Error 2: (EASIER) "undefined method `nil_class_path' for
> #<ActionView::Base:0xccc6378>) on line #2 of vendor/plugins/
> community_engine_groups/app/views/group_photos/new.html.haml:"
>
> ActionView::TemplateError (undefined method `nil_class_path' for
> #<ActionView::Base:0xccc6378>) on line #2 of vendor/plugins/
> community_engine_groups/app/views/group_photos/new.html.haml:
> 1: -box do
> 2:   - semantic_form_for @group_photo, :html => {:class =>
> "MainForm", :multipart => true} do |form|
>

I think that should be:

- semantic_form_for @photo, :html => {:class =>
"MainForm", :multipart => true} do |form|

Good luck,
Bruno


> 3:
> 4:     -form.inputs do
> 5:       = form.input :uploaded_data, :as => :file, :label
> => :choose_a_photo_to_upload.l, :hint =>
> "#{AppConfig.photo['attachment_fu_options']['max_size']}
> #{:megabyte_upload_limit.l}"
>
> [[END LOG]]
>
> Okay! Two slightly different problems - anyone have a clue what's
> going on with these? This is driving me crazy!
>
> Best - JScott
>
> --
> You received this message because you are subscribed to the Google Groups
> "CommunityEngine" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<communityengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/communityengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"CommunityEngine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/communityengine?hl=en.

Reply via email to