From: Koosha Khajeh Moogahi Date: Fri, 2 Nov 2012 12:49:37 +0000 (+0100) Subject: Bug 807937: Fix POD X-Git-Tag: bugzilla-3.6.12~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5b65145cb4b3991de3f68f161aea39891402434;p=thirdparty%2Fbugzilla.git Bug 807937: Fix POD r/a=LpSolit --- diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm index 71ced8e9d2..438c875907 100644 --- a/Bugzilla/Object.pm +++ b/Bugzilla/Object.pm @@ -557,7 +557,7 @@ and into this object. This should be an array. The name of the column that should be considered to be the unique "name" of this object. The 'name' is a B that uniquely identifies this Object in the database. Defaults to 'name'. When you specify -C<{name => $name}> to C, this is the column that will be +C<< {name => $name} >> to C, this is the column that will be matched against in the DB. =item C @@ -797,8 +797,9 @@ Notes: In order for this function to work in your subclass, type in the database. Your subclass also must define L and L. - Subclass Implementors: This function basically just - calls L, then +Subclass Implementors: + This function basically just calls + L, then L, and then finally L. So if you have a complex system that you need to implement, you can do it by calling these @@ -985,9 +986,9 @@ C<0> otherwise. Returns: A list of objects, or an empty list if there are none. - Notes: Note that you must call this as C<$class->get_all>. For - example, Cget_all>. - C will not work. + Notes: Note that you must call this as $class->get_all. For + example, Bugzilla::Keyword->get_all. + Bugzilla::Keyword::get_all will not work. =back