Plugin Directory

Changeset 226057


Ignore:
Timestamp:
04/07/2010 11:03:55 AM (16 years ago)
Author:
rgubby
Message:

small change to uniord function to handle an invalid char

Location:
wapple-architect
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wapple-architect/tags/3.5/theme/functions.php

    r223928 r226057  
    467467            $ud = false;
    468468        }
     469        // Further error reporting
     470        if(in_array($ud, array(56110)))
     471        {
     472            $encode = false;
     473        }       
    469474        return array('ud' => $ud, 'encode' => $encode, 'die' => $die);
    470475    }
  • wapple-architect/trunk/theme/functions.php

    r223928 r226057  
    466466            //error
    467467            $ud = false;
     468        }
     469        // Further error reporting
     470        if(in_array($ud, array(56110)))
     471        {
     472            $encode = false;
    468473        }
    469474        return array('ud' => $ud, 'encode' => $encode, 'die' => $die);
Note: See TracChangeset for help on using the changeset viewer.