mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 20:30:39 +02:00
Missed renaming a couple of variables
This commit is contained in:
@@ -2,17 +2,14 @@
|
|||||||
/*
|
/*
|
||||||
* e107 website system
|
* e107 website system
|
||||||
*
|
*
|
||||||
* Copyright (C) 2001-2009 e107 Inc (e107.org)
|
* Copyright (C) 2001-2010 e107 Inc (e107.org)
|
||||||
* Released under the terms and conditions of the
|
* Released under the terms and conditions of the
|
||||||
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
||||||
*
|
*
|
||||||
* Plugin configuration module - gsitemap
|
* Event calendar plugin - cron task
|
||||||
*
|
|
||||||
* $Source: /cvs_backup/e107_0.8/e107_plugins/calendar_menu/e_cron.php,v $
|
|
||||||
* $Revision$
|
|
||||||
* $Date$
|
|
||||||
* $Author$
|
|
||||||
*
|
*
|
||||||
|
* $URL$
|
||||||
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -348,7 +345,7 @@ class calendar_menu_cron // include plugin-folder in the name.
|
|||||||
// Now loop through adding users
|
// Now loop through adding users
|
||||||
while ($row = $this->ourDB->db_Fetch())
|
while ($row = $this->ourDB->db_Fetch())
|
||||||
{
|
{
|
||||||
if ($ec_debug_level == 0)
|
if ($this->debugLevel == 0)
|
||||||
{
|
{
|
||||||
$recipient = array(
|
$recipient = array(
|
||||||
'mail_recipient_id' => $row['user_id'],
|
'mail_recipient_id' => $row['user_id'],
|
||||||
@@ -370,7 +367,7 @@ class calendar_menu_cron // include plugin-folder in the name.
|
|||||||
{
|
{
|
||||||
$send_result = " **DEBUG**";
|
$send_result = " **DEBUG**";
|
||||||
}
|
}
|
||||||
if ($ec_log_requirement > 1)
|
if ($this->logRequirement > 1)
|
||||||
{
|
{
|
||||||
$this->logLine(' Send to '.$user_id.':'.$user_email.' Name: '.$user_name.' Result = '.$send_result);
|
$this->logLine(' Send to '.$user_id.':'.$user_email.' Name: '.$user_name.' Result = '.$send_result);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user