mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
FIX Don't emit deprecation warning for calling deprecated methods (#1293)
This commit is contained in:
parent
83fafdf53d
commit
24ba62ab06
@ -37,6 +37,7 @@ use SilverStripe\UserForms\Model\Submission\SubmittedForm;
|
|||||||
use SilverStripe\UserForms\Model\EditableFormField;
|
use SilverStripe\UserForms\Model\EditableFormField;
|
||||||
use SilverStripe\View\Requirements;
|
use SilverStripe\View\Requirements;
|
||||||
use SilverStripe\Core\Config\Configurable;
|
use SilverStripe\Core\Config\Configurable;
|
||||||
|
use SilverStripe\Dev\Deprecation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the user defined functionality to be applied to any {@link DataObject}
|
* Defines the user defined functionality to be applied to any {@link DataObject}
|
||||||
@ -318,9 +319,11 @@ SQL;
|
|||||||
$config->addComponent(new BulkManager);
|
$config->addComponent(new BulkManager);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Deprecation::withNoReplacement(function () use ($sort, $filter, $pagination) {
|
||||||
$sort->setThrowExceptionOnBadDataType(false);
|
$sort->setThrowExceptionOnBadDataType(false);
|
||||||
$filter->setThrowExceptionOnBadDataType(false);
|
$filter->setThrowExceptionOnBadDataType(false);
|
||||||
$pagination->setThrowExceptionOnBadDataType(false);
|
$pagination->setThrowExceptionOnBadDataType(false);
|
||||||
|
});
|
||||||
|
|
||||||
// attach every column to the print view form
|
// attach every column to the print view form
|
||||||
$columns['Created'] = 'Created';
|
$columns['Created'] = 'Created';
|
||||||
|
Loading…
Reference in New Issue
Block a user