]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/helper/captcha/images/class_ImageHelper.php
Debug mailer finished and debug messages removed:
[shipsimu.git] / inc / classes / main / helper / captcha / images / class_ImageHelper.php
index 0bafe36965f7ccccfa436139a0fb3655b32814c2..a29f5a19aba95cc1da3af4374863c623314a8384 100644 (file)
@@ -88,7 +88,7 @@ class ImageHelper extends BaseCaptcha implements HelpableTemplate {
         *
         * @param       $templateInstance       An instance of a template engine
         * @param       $imageType                      Type of the image
-        * @return      $helperInstance         A preparedf instance of this class
+        * @return      $helperInstance         A preparedf instance of this helper
         */
        public final static function createImageHelper (CompileableTemplate $templateInstance, $imageType) {
                // Get new instance
@@ -368,8 +368,8 @@ class ImageHelper extends BaseCaptcha implements HelpableTemplate {
                $templateInstance->assignVariable('image_fg_blue' , $this->foregroundColor['blue']);
 
                // Add all strings
-               foreach ($this->imageStrings as $id=>$imageString) {
-                       // Set current string id
+               foreach ($this->imageStrings as $id => $imageString) {
+                       // Set current string id to keep this helper in sync with template engine
                        $this->currString = $id;
 
                        // Set variable group
@@ -386,7 +386,7 @@ class ImageHelper extends BaseCaptcha implements HelpableTemplate {
                $imageContent = $templateInstance->getRawTemplateData();
 
                // Transfer all to the template engine
-               $templateInstance->renderImageContent($imageContent);
+               $templateInstance->renderXmlContent($imageContent);
        }
 }