Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make the flat file processor deprecated message more useful for pinpo…
…inting the source
  • Loading branch information
Mark-H committed Nov 28, 2018
1 parent 46dab21 commit 2b3f8e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/model/modx/modprocessor.class.php
Expand Up @@ -353,7 +353,8 @@ class modDeprecatedProcessor extends modProcessor {
* @return mixed
*/
public function process() {
$this->modx->deprecated('2.7.0', '', 'Flat file processor support');
$info = 'Flat file processor support, used for action ' . $this->getProperty('action', 'unknown action') . ' with path ' . $this->path . ',';
$this->modx->deprecated('2.7.0', '', $info);

$modx =& $this->modx;
$scriptProperties = $this->getProperties();
Expand Down

0 comments on commit 2b3f8e5

Please sign in to comment.