aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron/task/wrapper.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-07-26 16:15:56 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-07-26 16:15:56 +0200
commit5cdcaaa5318c05a04c544eeb25ced571737c2ce3 (patch)
treea436b178dc328722163668df76c937dfc55dd346 /phpBB/includes/cron/task/wrapper.php
parentcec4c94f2edff43508f20d8838399f4114557134 (diff)
downloadforums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar.gz
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar.bz2
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar.xz
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.zip
[feature/dic] Rename {phpEx => php_ext} for consistency
PHPBB3-10739
Diffstat (limited to 'phpBB/includes/cron/task/wrapper.php')
-rw-r--r--phpBB/includes/cron/task/wrapper.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/cron/task/wrapper.php b/phpBB/includes/cron/task/wrapper.php
index 75b7fbdaa3..d1ddf20156 100644
--- a/phpBB/includes/cron/task/wrapper.php
+++ b/phpBB/includes/cron/task/wrapper.php
@@ -23,7 +23,7 @@ if (!defined('IN_PHPBB'))
*/
class phpbb_cron_task_wrapper
{
- private $task, $phpbb_root_path, $phpEx;
+ private $task, $phpbb_root_path, $php_ext;
/**
* Constructor.
@@ -32,11 +32,11 @@ class phpbb_cron_task_wrapper
*
* @param phpbb_cron_task $task The cron task to wrap.
*/
- public function __construct(phpbb_cron_task $task, $phpbb_root_path, $phpEx)
+ public function __construct(phpbb_cron_task $task, $phpbb_root_path, $php_ext)
{
$this->task = $task;
$this->phpbb_root_path = $phpbb_root_path;
- $this->phpEx = $phpEx;
+ $this->php_ext = $php_ext;
}
/**
@@ -90,7 +90,7 @@ class phpbb_cron_task_wrapper
{
$extra = '';
}
- $url = append_sid($this->phpbb_root_path . 'cron.' . $this->phpEx, 'cron_type=' . $name . $extra);
+ $url = append_sid($this->phpbb_root_path . 'cron.' . $this->php_ext, 'cron_type=' . $name . $extra);
return $url;
}