Ignore:
Timestamp:
Jun 3, 2006 11:09:51 PM (18 years ago)
Author:
scdev
Message:

Q - Changed <strong> to <em> in raiseMsg() calls.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/ImageThumb.inc.php

    r136 r141  
    583583                if (!unlink($dest_file)) {
    584584                    $return_val++;
    585                     $app->logMsg(sprintf(_("Delete thumbs failed: %s"), $dest_file), LOG_WARNING, __FILE__, __LINE__);
     585                    $app->logMsg(sprintf('Delete thumbs failed: %s', $dest_file), LOG_WARNING, __FILE__, __LINE__);
    586586                }
    587587            }
     
    610610        $source_file = realpath(sprintf('%s/%s', $this->getParam('source_dir'), $file_name));
    611611        if (!unlink($source_file)) {
    612             $app->logMsg(sprintf(_("Delete original failed: %s"), $source_file), LOG_WARNING, __FILE__, __LINE__);
     612            $app->logMsg(sprintf('Delete original failed: %s', $source_file), LOG_WARNING, __FILE__, __LINE__);
    613613            return false;
    614614        }
Note: See TracChangeset for help on using the changeset viewer.