Revision 8
Added by stefan about 20 years ago
| install.php | ||
|---|---|---|
| 102 | 102 | 
    $dir = dir($template_dir);  | 
| 103 | 103 | 
    while (false !== $entry = $dir->read()) {
   | 
| 104 | 104 | 
    // Skip pointers  | 
| 105 | 
    	if(substr($entry, 0, 1) != '.' AND $entry != 'CVS' AND !is_dir($template_dir.'/'.$entry)) {
   | 
|
| 105 | 
    	if(substr($entry, 0, 1) != '.' AND $entry != '.svn' AND !is_dir($template_dir.'/'.$entry)) {
   | 
|
| 106 | 106 | 
    // Chmod file  | 
| 107 | 107 | 
    change_mode($template_dir.'/'.$entry);  | 
| 108 | 108 | 
    }  | 
| ... | ... | |
| 114 | 114 | 
    // Print admin footer  | 
| 115 | 115 | 
    $admin->print_footer();  | 
| 116 | 116 | 
     | 
| 117 | 
    ?>  | 
|
| 117 | 
    ?>  | 
|
Also available in: Unified diff
All occurrences of "CVS" in the code are replace by ".svn"