In the description of image select in details fieldset that describes where to upload a custom image you can read:
"Select which corner to show. You can add additional images (PNG-24) to the EDGEBANNER_PATH_IMAGES directory inside the module."
To solve this you must change in corner.admin.inc the line:
'#description' => t('Select which corner to show. You can add additional images (PNG-24) to the %images directory inside the module.', array('%images' => EDGEBANNER_PATH_IMAGES)),
to:
'#description' => t('Select which corner to show. You can add additional images (PNG-24) to the %images directory inside the module.', array('%images' => CORNER_PATH_IMAGES)),
Comments
Comment #1
kirie commentedGood find and thanks for reporting it! I'll try to get around to fix it this week.
Comment #2
kirie commentedCommitted to the 6.x-2.x branch.