3e2f7761 by Kevin Burton

updated changes to test if post-commit works

1 parent 5175fd0f
1 <?php
2 // item => array(default,description,[optiona/required],shortcode_available)
3
4 $config = array(
5 'default_gallery' => array('hg-gallery-general','Default Gallery slug name','optional',true)
6 , 'image_approval' => array('yes','Does linking or uploading a new gallery image require moderator/admin approval? values: yes|no','optional',true)
7 , 'video_approval' => array('no','Does linking or uploading a new gallery video require moderator/admin approval? values: yes|no','optional',true)
8 , 'items_per_page' => array('0','How many gallery items per page? 0 = show all','optional',true)
9 , 'youtube_account' => array('','YouTube account ID for uploading videos','required',false)
10 , 'youtube_pass' => array('','YouTube account password','required',false)
11 );
12 ?>
...\ No newline at end of file ...\ No newline at end of file
...@@ -13,7 +13,7 @@ table.expandable thead th { ...@@ -13,7 +13,7 @@ table.expandable thead th {
13 } 13 }
14 14
15 table.expandable tbody { 15 table.expandable tbody {
16 background-color:#fdfdee; 16 background-color:#f5f5f5;
17 } 17 }
18 18
19 table.expandable thead th.toggle h6 { 19 table.expandable thead th.toggle h6 {
......