Changeset 25018 for trunk/admin/site_reader_local.php
- Timestamp:
- Oct 19, 2013, 7:43:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/site_reader_local.php
r19703 r25018 53 53 if (!is_dir($this->site_url)) 54 54 { 55 array_push( 56 $errors, 57 array( 58 'path' => $this->site_url, 59 'type' => 'PWG-ERROR-NO-FS' 60 ) 55 $errors[] = array( 56 'path' => $this->site_url, 57 'type' => 'PWG-ERROR-NO-FS' 61 58 ); 62 59 … … 109 106 } 110 107 } 111 else if (is_dir($path.'/'.$node)108 else if (is_dir($path.'/'.$node) 112 109 and $node != 'pwg_high' 113 110 and $node != 'pwg_representative' 114 111 and $node != 'thumbnail' ) 115 112 { 116 array_push($subdirs, $node);113 $subdirs[] = $node; 117 114 } 118 115 } //end while readdir
Note: See TracChangeset
for help on using the changeset viewer.