add missing word to Widgets.pod
[catagits/Reaction.git] / lib / Reaction / Manual / Troubleshooting.pod
CommitLineData
8bb1255d 1=head1 NAME
2
3Reaction::Manual::Troubleshooting - Got a Reaction problem? Shoot it.
4
5=head2 Invalid CODE attributes: ...
6
7You need to inherit from L<Reaction::UI::Controller> for the Catalyst action
8attributes to be available.
9
10=head3 But I did inherit from Reaction::UI::Controller using Moose
11
cca3d43e 12You have to run the extends at compile time for perl attributes to work:
13
14 BEGIN {
15 extends 'Reaction::UI::Controller';
16 }
17
8bb1255d 18Welcome to hating attributes.
19
20=cut
cc4f29bf 21
22=begin docnotes
23
24clwolfe - suggest moving this to FAQ
25
f7c1ee8a 26=end docnotes