phpBB

Code Changes

File: viewforum.php

  Unmodified   Added   Modified   Removed
Line 244Line 244

if ($task->is_ready())
{


if ($task->is_ready())
{

		$url = $task->get_url();
$template->assign_var('RUN_CRON_TASK', '<img src="' . $url . '" width="1" height="1" alt="cron" />');

		$cron_task_tag = $task->get_html_tag();
$template->assign_var('RUN_CRON_TASK', $cron_task_tag);

	}
else
{

	}
else
{

Line 255Line 255

if ($task->is_ready())
{


if ($task->is_ready())
{

			$url = $task->get_url();
$template->assign_var('RUN_CRON_TASK', '<img src="' . $url . '" width="1" height="1" alt="cron" />');

			$cron_task_tag = $task->get_html_tag();
$template->assign_var('RUN_CRON_TASK', $cron_task_tag);

		}
}
}

		}
}
}