1
0
mirror of https://github.com/e107inc/e107.git synced 2025-05-01 17:57:56 +02:00

Fix for blank status/latest icon.

This commit is contained in:
Cameron 2017-01-26 19:43:34 -08:00
parent 4cc15882b2
commit 0aa49bd3a5

View File

@ -14,7 +14,7 @@ class _blank_dashboard // include plugin-folder in the name.
function status() // Status Panel in the admin area
{
$var[0]['icon'] = "<img src='' alt='' />";
$var[0]['icon'] = "<img src='".e_PLUGIN."_blank/images/blank_16.png' alt='' />";
$var[0]['title'] = "My Title";
$var[0]['url'] = e_PLUGIN_ABS."_blank/_blank.php";
$var[0]['total'] = 10;
@ -25,7 +25,7 @@ class _blank_dashboard // include plugin-folder in the name.
function latest() // Latest panel in the admin area.
{
$var[0]['icon'] = "<img src='' alt='' />";
$var[0]['icon'] = "<img src='".e_PLUGIN."_blank/images/blank_16.png' alt='' />";
$var[0]['title'] = "My Title";
$var[0]['url'] = e_PLUGIN_ABS."_blank/_blank.php";
$var[0]['total'] = 10;