resolved todo

This commit is contained in:
kremsy 2014-01-14 18:19:29 +01:00 committed by Steffen Schröder
parent 1df8734dc9
commit 145f612a2f

View File

@ -27,7 +27,7 @@ class IconManager implements CallbackListener {
const MX_ICON = 'ManiaExchange.png'; const MX_ICON = 'ManiaExchange.png';
const MX_ICON_MOVER = 'ManiaExchange_logo_press.png'; const MX_ICON_MOVER = 'ManiaExchange_logo_press.png';
const MX_ICON_GREEN = 'ManiaExchangeGreen.png'; const MX_ICON_GREEN = 'ManiaExchangeGreen.png';
const MX_ICON_GREEN_MOVER = 'ManiaExchange_logo_pressGreen.png'; const MX_ICON_GREEN_MOVER = 'ManiaExchange_logo_pressGreen.png';
/** /**
@ -56,8 +56,8 @@ class IconManager implements CallbackListener {
private function addDefaultIcons() { private function addDefaultIcons() {
$this->addIcon(self::MX_ICON); $this->addIcon(self::MX_ICON);
$this->addIcon(self::MX_ICON_MOVER); $this->addIcon(self::MX_ICON_MOVER);
$this->addIcon(self::MX_ICON_GREEN, "http://www.pictures.esc-clan.net/upload/"); //TODO mc website $this->addIcon(self::MX_ICON_GREEN);
$this->addIcon(self::MX_ICON_GREEN_MOVER , " http://www.pictures.esc-clan.net/upload/"); $this->addIcon(self::MX_ICON_GREEN_MOVER);
} }