diff options
author | friendica <info@friendica.com> | 2014-02-20 02:30:37 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-20 02:30:37 -0800 |
commit | 4944070e79d4914ba0503e6e90c194cbd766dc38 (patch) | |
tree | bbd8477d04eb8fce18039923d889c469e9883128 /install/update.php | |
parent | d8434bb480ee4f7a94246a8623614a4c3105a2a6 (diff) | |
download | volse-hubzilla-4944070e79d4914ba0503e6e90c194cbd766dc38.tar.gz volse-hubzilla-4944070e79d4914ba0503e6e90c194cbd766dc38.tar.bz2 volse-hubzilla-4944070e79d4914ba0503e6e90c194cbd766dc38.zip |
vsprintf error on update
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 3e39a5b4c..7d1305863 100644 --- a/install/update.php +++ b/install/update.php @@ -1088,7 +1088,7 @@ function update_r1097() { // fix some mangled hublocs from a bug long ago - $r = q("select hubloc_id, hubloc_addr from hubloc where hubloc_addr like '%/%'"); + $r = q("select hubloc_id, hubloc_addr from hubloc where hubloc_addr like '%%/%%'"); if($r) { foreach($r as $rr) { q("update hubloc set hubloc_addr = '%s' where hubloc_id = %d limit 1", |