/lib/MyWeblog/Action/CreatePost.pm
------------------------------------
package MyWeblog::Action::CreatePost;
use warnings;
use strict;

use base qw/Jifty::Action::Record::Create/;

sub arguments {
    # This should return an arrayref of arguments
    my $self = shift;
    my $arg = $self->SUPER::arguments(@_);
    return $arg;
}

1;
-------------------------------------

And Post Model is same as the tutorial one.

But it worked if I add the following lines at the end of lib/MyWeblog/Model/Post.pm except the error occuring in Administrative Console page as I previously described.
-------------------------------------
package MyWeblog::Action::CreatePost;

sub arguments {
    # This should return an arrayref of arguments
    my $self = shift;
    my $arg = $self->SUPER::arguments(@_);
    return $arg;
}
-------------------------------------


-
Hm Can you show us the exact code you've got?




-----------
InSuk Joung
-----------


"우리 인터넷, Daum" http://www.daum.net 『평생쓰는 무료 한메일넷』
_______________________________________________
jifty-devel mailing list
[email protected]
http://lists.jifty.org/cgi-bin/mailman/listinfo/jifty-devel

Reply via email to