Changeset bfdbcf5 in github


Ignore:
Timestamp:
Oct 18, 2008 5:57:08 AM (5 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
407dcf9
Parents:
19c9d39
Message:

#1485505: PHP bug (?) workaround for html2text class autoloading

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/iniset.php

    rd99b935 rbfdbcf5  
    7676{ 
    7777  $filename = preg_replace( 
    78       array('/MDB2_(.+)/', '/Mail_(.+)/', '/^html_.+/', '/^utf8$/'), 
    79       array('MDB2/\\1', 'Mail/\\1', 'html', 'utf8.class'), 
     78      array('/MDB2_(.+)/', 
     79            '/Mail_(.+)/', 
     80            '/^html_.+/', 
     81            '/^utf8$/', 
     82            '/html2text/' 
     83        ), 
     84      array('MDB2/\\1', 
     85            'Mail/\\1', 
     86            'html', 
     87            'utf8.class', 
     88            'lib/html2text'     // see #1485505 
     89        ), 
    8090      $classname 
    8191  ); 
Note: See TracChangeset for help on using the changeset viewer.