summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Object.pm
diff options
context:
space:
mode:
authorKoosha Khajeh Moogahi <koosha.khajeh@gmail.com>2012-11-02 13:45:33 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2012-11-02 13:45:33 +0100
commitb07c28db46f93f57a25b1b0210761f257fd05fbd (patch)
treef972eaa21ccb36c37bb2ff8a66237a90e3cf0948 /Bugzilla/Object.pm
parentbe7354cbea019cd0220e16119f70e0885d0326fe (diff)
downloadbugzilla-b07c28db46f93f57a25b1b0210761f257fd05fbd.tar.gz
bugzilla-b07c28db46f93f57a25b1b0210761f257fd05fbd.tar.xz
Bug 807937: Fix POD
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Object.pm')
-rw-r--r--Bugzilla/Object.pm13
1 files changed, 7 insertions, 6 deletions
diff --git a/Bugzilla/Object.pm b/Bugzilla/Object.pm
index 422a2ffa5..70ca1a5f0 100644
--- a/Bugzilla/Object.pm
+++ b/Bugzilla/Object.pm
@@ -801,7 +801,7 @@ your own C<DB_COLUMNS> subroutine in a subclass.)
The name of the column that should be considered to be the unique
"name" of this object. The 'name' is a B<string> that uniquely identifies
this Object in the database. Defaults to 'name'. When you specify
-C<{name => $name}> to C<new()>, this is the column that will be
+C<< {name => $name} >> to C<new()>, this is the column that will be
matched against in the DB.
=item C<ID_FIELD>
@@ -1089,8 +1089,9 @@ Notes: In order for this function to work in your subclass,
your subclass's L</ID_FIELD> must be of C<SERIAL>
type in the database.
- Subclass Implementors: This function basically just
- calls L</check_required_create_fields>, then
+Subclass Implementors:
+ This function basically just calls
+ L</check_required_create_fields>, then
L</run_create_validators>, and then finally
L</insert_create_data>. So if you have a complex system that
you need to implement, you can do it by calling these
@@ -1283,9 +1284,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, C<Bugzilla::Keyword->get_all>.
- C<Bugzilla::Keyword::get_all> 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