Changeset 1107:3943962d69b8 for plugins/importExport
- Timestamp:
- 02/27/13 11:48:32 (12 years ago)
- Branch:
- sexy
- Parents:
- 880:02c78f56f430 (diff), 1105:ce855d61f9ce (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/importExport/inc/flat/class.flat.import.php
r877 r1107 787 787 $strReq = 'SELECT media_id '. 788 788 'FROM '.$this->prefix.'media '. 789 "WHERE media_path = '".$this->c ur_media->media_path."' ".790 "AND media_file = '".$this->c ur_media->media_file."' ";789 "WHERE media_path = '".$this->con->escape($this->cur_media->media_path)."' ". 790 "AND media_file = '".$this->con->escape($this->cur_media->media_file)."' "; 791 791 792 792 $rs = $this->con->select($strReq); -
plugins/importExport/inc/flat/class.flat.import.php
r1093 r1107 440 440 } 441 441 442 $post_password = $post->post_password ? (string) $post->post_password : null;443 444 442 $this->cur_post->post_id = (integer) $post->post_id; 445 443 $this->cur_post->blog_id = (string) $post->blog_id; … … 449 447 $this->cur_post->post_creadt = (string) $post->post_creadt; 450 448 $this->cur_post->post_upddt = (string) $post->post_upddt; 451 $this->cur_post->post_password = $post_password;452 449 $this->cur_post->post_type = (string) $post->post_type; 453 450 $this->cur_post->post_format = (string) $post->post_format;
Note: See TracChangeset
for help on using the changeset viewer.