Changeset 960595
- Timestamp:
- 08/05/2014 03:47:56 PM (12 years ago)
- Location:
- wp-fjqgrid/trunk
- Files:
-
- 4 edited
-
inc/wpf-jqgrid-db.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wpf-jqgrid.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-fjqgrid/trunk/inc/wpf-jqgrid-db.php
r878671 r960595 29 29 $i = 0; 30 30 foreach ( $fieldsnames as $field ) { 31 $fieldsdescr .= $field . '' . $fieldsdefs[$i++] . ', ';32 } 33 34 $sql_create_table = "CREATE TABLE `{$this->tablename}` (31 $fieldsdescr .= '`'.$field . '` ' . $fieldsdefs[$i++] . ', '; 32 } 33 34 $sql_create_table = "CREATE TABLE IF NOT EXISTS `{$this->tablename}` ( 35 35 {$fieldsdescr} 36 36 PRIMARY KEY ($keyfield) -
wp-fjqgrid/trunk/index.php
r957924 r960595 4 4 Plugin URI: http://wordpress.org/extend/plugins/wpf-jqgrid/ 5 5 Description: jqGrid porting to wordpress. Use shortcode like <code>[wpf-jqgrid table='wpf_jqgrid_sample' idtable=1 caption='name to display' editable=true]</code> 6 Version: 0.1 36 Version: 0.14 7 7 Author: faina09 8 8 Author URI: http://profiles.wordpress.org/faina09 9 9 License: GPLv2 or later 10 10 */ 11 $VER = '0.1 3';11 $VER = '0.14'; 12 12 defined( 'ABSPATH' ) OR exit; 13 13 -
wp-fjqgrid/trunk/readme.txt
r957924 r960595 74 74 75 75 == Changelog == 76 = 0.14 = 77 * fix create table MySQL 5.6 76 78 = 0.13 = 77 79 * fix ob_clean -
wp-fjqgrid/trunk/wpf-jqgrid.php
r878671 r960595 206 206 break; 207 207 default: 208 //here are the fields names - fields types couples 209 $fields[] = $frmarray[0]; 210 $types[] = $frmarray[1]; 208 if (isset ( $frmarray[1] ) ) { 209 //here are the fields names - fields types couples 210 $fields[] = $frmarray[0]; 211 $types[] = $frmarray[1]; 212 } 211 213 break; 212 214 }
Note: See TracChangeset
for help on using the changeset viewer.