summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorSimon Green <mail@simon.green>2015-07-29 11:56:50 +0200
committerSimon Green <mail@simon.green>2015-07-29 11:56:50 +0200
commit6f9b176104ad62bf80b482b99ccf080c5ab5c3a5 (patch)
tree2ca6a890ad4fdd879d07774eabc8bdae03d19053 /Bugzilla
parent6e1a8e84cd770766fb5cb57996af0e8cb1611907 (diff)
downloadbugzilla-6f9b176104ad62bf80b482b99ccf080c5ab5c3a5.tar.gz
bugzilla-6f9b176104ad62bf80b482b99ccf080c5ab5c3a5.tar.xz
Bug 1174560 - DBI link in API docs broken.
r=gerv, a=simon
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/DB.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm
index adf55f351..e82b823d7 100644
--- a/Bugzilla/DB.pm
+++ b/Bugzilla/DB.pm
@@ -1517,7 +1517,7 @@ __END__
=head1 NAME
-Bugzilla::DB - Database access routines, using L<DBI>
+Bugzilla::DB - Database access routines, using L<DBI|https://metacpan.org/pod/DBI>
=head1 SYNOPSIS
@@ -1778,7 +1778,7 @@ The constructor should create a DSN from the parameters provided and
then call C<db_new()> method of its super class to create a new
class instance. See L<db_new> description in this module. As per
DBI documentation, all class variables must be prefixed with
-"private_". See L<DBI>.
+"private_". See L<DBI|https://metacpan.org/pod/DBI>.
=back
@@ -2249,7 +2249,8 @@ These methods return information about data in the database.
Returns the last serial number, usually from a previous INSERT.
Must be executed directly following the relevant INSERT.
-This base implementation uses L<DBI/last_insert_id>. If the
+This base implementation uses DBI's
+L<last_insert_id|https://metacpan.org/pod/DBI#last_insert_id>. If the
DBD supports it, it is the preffered way to obtain the last
serial index. If it is not supported, the DB-specific code
needs to override this function.
@@ -2703,7 +2704,7 @@ our check for implementation of C<new> by derived class useless.
=head1 SEE ALSO
-L<DBI>
+L<DBI|https://metacpan.org/pod/DBI>
L<Bugzilla::Constants/DB_MODULE>