diff options
author | lpsolit%gmail.com <> | 2005-07-26 23:09:47 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-26 23:09:47 +0200 |
commit | da69ce2b6f53856aef539cff334cd864af1b57b8 (patch) | |
tree | 77967af86337d4155888cbb8eb990dd916b77f66 /Bugzilla/User | |
parent | 80d8289eae009f7170a7f6152ec7ededa6907bcf (diff) | |
download | bugzilla-da69ce2b6f53856aef539cff334cd864af1b57b8.tar.gz bugzilla-da69ce2b6f53856aef539cff334cd864af1b57b8.tar.xz |
Bug 301967: Some .pm files have invalid POD syntax - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=justdave
Diffstat (limited to 'Bugzilla/User')
-rw-r--r-- | Bugzilla/User/Setting.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Bugzilla/User/Setting.pm b/Bugzilla/User/Setting.pm index a5ce9411f..450d20a7f 100644 --- a/Bugzilla/User/Setting.pm +++ b/Bugzilla/User/Setting.pm @@ -279,15 +279,18 @@ sub set { __END__ =head1 NAME + Bugzilla::User::Setting - Object for a user preference setting =head1 SYNOPSIS + Setting.pm creates a setting object, which is a hash containing the user preference information for a single preference for a single user. These are usually accessed through the "settings" object of a user, and not directly. =head1 DESCRIPTION + use Bugzilla::User::Setting; my $settings; @@ -343,13 +346,17 @@ Params: C<$setting_name> - string - the name of the setting Returns: nothing =begin private + =item C<_setting_exists> Description: Determines if a given setting exists in the database. Params: C<$setting_name> - string - the setting name Returns: boolean - true if the setting already exists in the DB. +=back + =end private + =head1 METHODS =over 4 @@ -386,4 +393,4 @@ Description: If a user chooses to use their own value rather than the Params: C<$value> - string - the new value for this setting for this user. Returns: nothing - +=back |