- Removes leftover private variable

This commit is contained in:
Vlad
2016-09-19 20:50:51 -04:00
parent 8360377992
commit 379dfb5f6e

View File

@@ -5,7 +5,6 @@ if(!defined('ABSPATH')) exit;
class SendingQueue extends Model {
public static $_table = MP_SENDING_QUEUES_TABLE;
private $_newsletter_rendered_body;
const STATUS_COMPLETED = 'completed';
const STATUS_SCHEDULED = 'scheduled';
const STATUS_PAUSED = 'paused';
@@ -85,4 +84,4 @@ class SendingQueue extends Model {
: $this->subscribers;
return $model;
}
}
}