Changeset 3083

Show
Ignore:
Timestamp:
04/06/07 11:14:41 (21 months ago)
Author:
crizin
Message:

#357

  • [3069][3071]에 반영하는 과정에서 누락된 부분 추가합니다
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/view/view.php

    r3081 r3083  
    19711971 
    19721972    // 가로, 세로 어느 쪽이든 0이면 이미지는 표시되지 않음. 따라서 계산할 필요 없음. 
    1973     if ($attributes['width'] === 0 || $attributes['height'] === 0) { 
     1973    if (@$attributes['width'] === 0 || @$attributes['height'] === 0) { 
    19741974        return array($property, false); 
    19751975    }