diff options
author | zotlabs <mike@macgirvin.com> | 2018-06-04 16:36:13 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-06-04 16:36:13 -0700 |
commit | e1b85a361cf53fd7bb79ef24d9d5b0dfb145fccf (patch) | |
tree | 98b846d64dfb928f1ef690b01dbe6362d94cf215 /include/import.php | |
parent | 5a9e6c8a695f0adac35baf2d63f58fb27424140f (diff) | |
download | volse-hubzilla-e1b85a361cf53fd7bb79ef24d9d5b0dfb145fccf.tar.gz volse-hubzilla-e1b85a361cf53fd7bb79ef24d9d5b0dfb145fccf.tar.bz2 volse-hubzilla-e1b85a361cf53fd7bb79ef24d9d5b0dfb145fccf.zip |
photos not syncing properly if destination is a postgres site
Diffstat (limited to 'include/import.php')
-rw-r--r-- | include/import.php | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/import.php b/include/import.php index ae6a0ab6a..91a26b23b 100644 --- a/include/import.php +++ b/include/import.php @@ -1326,20 +1326,23 @@ function sync_files($channel, $files) { ); if($exists) { - if(! dbesc_array($p)) - continue; $str = ''; foreach($p as $k => $v) { + $matches = false; + if(preg_match('/([^a-zA-Z0-9\-\_\.])/',$k,$matches)) { + continue; + } + if($str) $str .= ","; - - $str .= " " . TQUOT . $k . TQUOT . " = '" . $v . "' "; + + $str .= " " . TQUOT . $k . TQUOT . " = '" . (($k === 'content') ? dbescbin($v) : dbesc($v)) . "' "; } $r = dbq("update photo set " . $str . " where id = " . intval($exists[0]['id']) ); } else { - create_table_from_array('photo',$p); + create_table_from_array('photo',$p, [ 'content' ] ); } } } |