Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions code/site/libraries/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ final public function fetchResource($resource_name = null)
*
* @since 1.0
*/
final private function checkInternally($resource_name)
final function checkInternally($resource_name)
{
if (! method_exists($this, $resource_name))
{
Expand All @@ -369,7 +369,7 @@ final private function checkInternally($resource_name)
*
* @since 1.0
*/
final private function checkRequestLimit()
final function checkRequestLimit()
{
$limit = $this->params->get('request_limit', 0);

Expand Down Expand Up @@ -424,7 +424,7 @@ final private function checkRequestLimit()
*
* @since 1.0
*/
final private function log()
final function log()
{
if (! $this->params->get('log_requests'))
{
Expand Down Expand Up @@ -485,7 +485,7 @@ final private function log()
*
* @since 1.0
*/
final private function lastUsed()
final function lastUsed()
{
$table = Table::getInstance('Key', 'ApiTable');

Expand Down