Skip to content

Commit

Permalink
Fix missing icon in hotspot upload form
Browse files Browse the repository at this point in the history
  • Loading branch information
ywarnier committed Mar 5, 2016
1 parent ac0e194 commit 08307e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/exercice/hotspot.class.php
Expand Up @@ -34,7 +34,7 @@ public function createForm (&$form, $fck_config=0)
parent::createForm($form, $fck_config);

if (!isset($_GET['editQuestion'])) {
$form->addElement('file','imageUpload',array('<img src="../img/icons/22/hotspots.png" />', get_lang('UploadJpgPicture')) );
$form->addElement('file','imageUpload',array('<img src="'.Display::return_icon('hotspot.png', null, null, ICON_SIZE_BIG, false, true).'" />', get_lang('UploadJpgPicture')) );

// setting the save button here and not in the question class.php
// Saving a question
Expand Down

0 comments on commit 08307e8

Please sign in to comment.