Changeset 1712382
- Timestamp:
- 08/11/2017 11:37:13 PM (9 years ago)
- Location:
- postgresql-for-wordpress/trunk
- Files:
-
- 2 edited
-
pg4wp/driver_pgsql.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
postgresql-for-wordpress/trunk/pg4wp/driver_pgsql.php
r1712379 r1712382 468 468 preg_match($pattern, $sql, $matches); 469 469 $GLOBALS['pg4wp_ins_table'] = $matches[1]; 470 $match_list = split(' ', $matches[0]);470 $match_list = explode(' ', $matches[0]); 471 471 if( $GLOBALS['pg4wp_ins_table']) 472 472 { -
postgresql-for-wordpress/trunk/readme.txt
r1712379 r1712382 67 67 == Changelog == 68 68 69 = 1.3.2 = 70 * Replaced split() with explode() 69 71 * Corrected a strange behavior where effective connection may happen a second time 70 72 * Ignore '@@SESSION.sql_mode'
Note: See TracChangeset
for help on using the changeset viewer.