ERROR: wrong number of arguments (1 for 0)
@friendRequests = Friendrequest.all(:conditions => { :friend_id => @user.id, :status => 0 }, :include => :requester )
SOLUTION:
.all() now takes 0 parameters. It has been updated.
Instead do this :
Just another Yipp.ca Blogs site
ERROR: wrong number of arguments (1 for 0)
@friendRequests = Friendrequest.all(:conditions => { :friend_id => @user.id, :status => 0 }, :include => :requester )
SOLUTION:
.all() now takes 0 parameters. It has been updated.
Instead do this :
Recent Comments