Plugin Directory

Changeset 1712382


Ignore:
Timestamp:
08/11/2017 11:37:13 PM (9 years ago)
Author:
hawk__
Message:

Replace call to split() with explode()

Location:
postgresql-for-wordpress/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • postgresql-for-wordpress/trunk/pg4wp/driver_pgsql.php

    r1712379 r1712382  
    468468            preg_match($pattern, $sql, $matches);
    469469            $GLOBALS['pg4wp_ins_table'] = $matches[1];
    470             $match_list = split(' ', $matches[0]);
     470            $match_list = explode(' ', $matches[0]);
    471471            if( $GLOBALS['pg4wp_ins_table'])
    472472            {
  • postgresql-for-wordpress/trunk/readme.txt

    r1712379 r1712382  
    6767== Changelog ==
    6868
     69= 1.3.2 =
     70* Replaced split() with explode()
    6971* Corrected a strange behavior where effective connection may happen a second time
    7072* Ignore '@@SESSION.sql_mode'
Note: See TracChangeset for help on using the changeset viewer.