Changeset 3584 for temp


Ignore:
Timestamp:
2006/08/31 21:40:14 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/design/index.php

    r3583 r3584  
    192192 
    193193global $GLOBAL_ERR; 
    194 $arrGlobalErr = explode("\n",$GLOBAL_ERR); 
    195 $errCnt = count($arrGlobalErr) - 8; 
    196 if ($errCnt < 0 ) { 
    197     $errCnt = 0; 
     194$errCnt = 0; 
     195if ($GLOBAL_ERR != "") { 
     196    $arrGlobalErr = explode("\n",$GLOBAL_ERR); 
     197    $errCnt = count($arrGlobalErr) - 8; 
     198    if ($errCnt < 0 ) { 
     199        $errCnt = 0; 
     200    } 
    198201} 
    199202$objPage->errCnt = $errCnt; 
Note: See TracChangeset for help on using the changeset viewer.