punbb/cache/cache_ranks.php
changeset 7 98bbc533541c
parent 6 5e1f1e916419
child 8 8baccbad4a55
equal deleted inserted replaced
6:5e1f1e916419 7:98bbc533541c
     1 <?php
       
     2 
       
     3 define('PUN_RANKS_LOADED', 1);
       
     4 
       
     5 $pun_ranks = array (
       
     6   0 => 
       
     7   array (
       
     8     'id' => '1',
       
     9     'rank' => 'New member',
       
    10     'min_posts' => '0',
       
    11   ),
       
    12   1 => 
       
    13   array (
       
    14     'id' => '2',
       
    15     'rank' => 'New member',
       
    16     'min_posts' => '0',
       
    17   ),
       
    18 );
       
    19 
       
    20 ?>