From 36eead4e9c74175bc4e218fb15c411454acd010b Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 6 Feb 2009 04:50:46 +0000 Subject: [PATCH] fixed documentation --- lib/WebGUI/Inbox/Message.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/WebGUI/Inbox/Message.pm b/lib/WebGUI/Inbox/Message.pm index 0e9ea9280..9cbcfbd19 100644 --- a/lib/WebGUI/Inbox/Message.pm +++ b/lib/WebGUI/Inbox/Message.pm @@ -67,11 +67,11 @@ May be "unread", "pending", or "completed". Defaults to "pending". You should set this to "pending" if the message requires an action which will later be completed. -WebGUI::Inbox->create( $session, { status => "pending"} ) +WebGUI::Inbox::Message->create( $session, { status => "pending"} ) You should set this to "unread" if this is a message without an action, such as a notification. -WebGUI::Inbox->create( $session, { status => "unread" } ); +WebGUI::Inbox::Message->create( $session, { status => "unread" } ); You should only set this to "completed" if this is an action that would normally be "pending" but for some reason requries no further action. For instance, if the user submitting some content is also the approver you may choose