95$admin->row_list(T('The authentication class to use to validate cookie data and longins. You may need to edit the actual file for certain authentication systems.'),'setting[authmethod]');
99$admin->row_text(T('You can set the default language that all new users (and guests) will use.'),construct_option_select('setting[defaultlanguage]', Bugdar::$datastore['language'],$bugsys->options['defaultlanguage'],'languageid','title'),$bugsys->options['defaultlanguage']);
108$admin->row_span(T('Allow HTML in Bug Reports'),'thead');
109$admin->row_yesno(T('Set this to <em>yes</em> if you want to allow users to post raw HTML in their bug reports. This is <strong>very</strong> dangerous and it is not recommended.'),'setting[allowhtml]',$bugsys->options['allowhtml']);
113$admin->row_text(T('This is the default developer new bugs will be assigned to. If a user does not have permisssion to assign bugs, this will be the default. If you don\'t want any default assignment, leave this as <em>Not Selected</em>.'),construct_option_select('setting[defaultassign]', Bugdar::$datastore['assignto'],$bugsys->options['defaultassign'],'userid','displayname',0));
123$admin->row_span(T('Hide Statuses on Bug Listings'),'thead');
124$admin->row_text(T('Here you can specify which statuses to hide on the bug list displays. Users have options in their controls to change this from these values, and this does not affect searches or the favorites list.'),construct_option_select('setting[hidestatuses]', Bugdar::$datastore['status'],$bugsys->options['hidestatuses'],'statusid','status',0,true));
128$admin->row_text(T('Select the column to sort bugs by on listings. This is only a default setting which users can override in their preferences.'),construct_option_select('setting[defaultsortkey]', ListSorter::fetch_by_text(false),$bugsys->options['defaultsortkey']));
132$admin->row_text(T('Specify the default direction to sort bugs in the selected column. This works with and follows the same rules as the Sort Column.'),construct_option_select('setting[defaultsortas]', ListSorter::fetch_as_text(false),$bugsys->options['defaultsortas']));
136$admin->row_text(T('Specify the order of the columns for bug listings. The value 0 disables the display of a column and if two or more columns have the same position number, they will be displayed in the same column.'),ConstructColumnOptionsSetting());
146$admin->row_input(T('The number of items (e.g. bugs) to be displayed on a page by default. The user will have the option of over-riding these values.'),'setting[defaultpp]',$bugsys->options['defaultpp']);
150$admin->row_input(T('To prevent your server from experiencing load problems, set the maximum per page limit. Specifying a value here will make sure any user-entered value will not be higher than this, preventing server load problems.'),'setting[maxpp]',$bugsys->options['maxpp']);
153$admin->row_span(T('Number of Page Links'),'thead');
154$admin->row_input(T('The number of pages that will appear in the page navigation system on either side of the current page. Set this to 0 to display all pages.'),'setting[pagelinks]',$bugsys->options['pagelinks']);