aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Profiles.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2023-04-12 11:36:34 +0200
committerMario Vavti <mario@mariovavti.com>2023-04-12 11:36:34 +0200
commit261762448e99a722d2a5e262610a66c5c1c72293 (patch)
treeb875acafe519323011d900ccdc9a5c751a2e58be /Zotlabs/Module/Profiles.php
parent7ce4175876ce13727432dc839938bb8e486ef406 (diff)
downloadvolse-hubzilla-261762448e99a722d2a5e262610a66c5c1c72293.tar.gz
volse-hubzilla-261762448e99a722d2a5e262610a66c5c1c72293.tar.bz2
volse-hubzilla-261762448e99a722d2a5e262610a66c5c1c72293.zip
use url instead of addr for updates and clean up local_dir_update() and update_modtime()
Diffstat (limited to 'Zotlabs/Module/Profiles.php')
-rw-r--r--Zotlabs/Module/Profiles.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/Zotlabs/Module/Profiles.php b/Zotlabs/Module/Profiles.php
index e248cd028..ce496252b 100644
--- a/Zotlabs/Module/Profiles.php
+++ b/Zotlabs/Module/Profiles.php
@@ -217,7 +217,6 @@ class Profiles extends \Zotlabs\Web\Controller {
check_form_security_token_redirectOnErr('/profiles', 'profile_edit');
-
$is_default = (($orig[0]['is_default']) ? 1 : 0);
$profile_name = notags(trim($_POST['profile_name']));
@@ -579,12 +578,12 @@ class Profiles extends \Zotlabs\Web\Controller {
$channel = \App::get_channel();
if($namechanged && $is_default) {
- // change name on all associated xchans by matching the url
- q("UPDATE xchan SET xchan_name = '%s', xchan_name_date = '%s' WHERE xchan_url = '%s'",
+ q("UPDATE xchan SET xchan_name = '%s', xchan_name_date = '%s' WHERE xchan_hash = '%s'",
dbesc($name),
dbesc(datetime_convert()),
- dbesc(z_root() . '/channel/' . $channel['channel_address'])
+ dbesc($channel['xchan_hash'])
);
+
q("UPDATE channel SET channel_name = '%s' WHERE channel_hash = '%s'",
dbesc($name),
dbesc($channel['xchan_hash'])