Add flag to allow to save image without validation
This commit is contained in:
parent
2a57e00cb4
commit
19903ea3c1
@ -330,9 +330,9 @@ abstract class photo_driver {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function save($arr) {
|
public function save($arr, $skipcheck = false) {
|
||||||
|
|
||||||
if(! $this->is_valid()) {
|
if(! ($skipcheck || $this->is_valid())) {
|
||||||
logger('attempt to store invalid photo.');
|
logger('attempt to store invalid photo.');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user