Browse Source

convert: chmod(664) after moving temporary image

pull/40/head
Michael Save 12 years ago
parent
commit
6ab3ec5da9
  1. 1
      inc/image.php

1
inc/image.php

@ -231,6 +231,7 @@
}
public function to($src) {
rename($this->temp, $src);
chmod($src, 0664);
}
public function width() {
return $this->width;

Loading…
Cancel
Save