Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. /************** config_inc.php ***************/
  2. <?php
  3. $g_hostname = '';
  4. $g_db_type = '';
  5. $g_database_name = '';
  6. $g_db_username = '';
  7. $g_db_password = '';
  8.  
  9. // AB allow anonymous user to login
  10. $g_allow_anonymous_login = ON;
  11. $g_anonymous_account = 'anonymous';
  12.  
  13. // AB customizing default Report Issue form
  14. $g_bug_report_page_fields = array(
  15. 'category_id',
  16. //'view_state',
  17. //'handler',
  18. 'priority',
  19. 'severity',
  20. 'reproducibility',
  21. //'platform',
  22. //'os',
  23. //'os_version',
  24. //'product_version',
  25. //'product_build',
  26. //'target_version',
  27. //'summary',
  28. //'description',
  29. //'additional_info',
  30. //'steps_to_reproduce',
  31. //'attachments',
  32. //'due_date',
  33. );
  34.  
  35. // AB customizing Severity
  36. $g_default_bug_severity = NORMAL;
  37.  
  38. $g_severity_enum_string = '10:feature,50:minor,51:normal,70:crash,60:major,81:blocker';
  39.  
  40. ?>
  41. /*********************************************************************/
  42.  
  43. /********************* custom_constants_inc.php **********************/
  44.  
  45. <?php
  46.  
  47.  
  48. define( 'NORMAL', 51 );
  49. define( 'BLOCKER', 81 );
  50. /*********************************************************************/
  51. /********************* custom_strings_inc.php **********************/
  52.  
  53. <?php
  54.  
  55. // it should be $s_ not $g_ and exactly the same as it is in config_inc!
  56. $s_severity_enum_string = '10:feature,50:minor,51:normal,70:crash,60:major,81:blocker';
  57. /*********************************************************************/
  58.  
  59. !!!!! custom_* files have to be saved in root folder not core !!!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement