aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-01-12 18:54:35 -0800
committerfriendica <info@friendica.com>2012-01-12 18:54:35 -0800
commitdf14d7abc472b49c8cb503dde789c9658ab73366 (patch)
treeb9c0904689edc74963f80509b58209d30b8e088a /mod
parentcdd56dc5def723e1ed02a66cc97c7e03bdfa985f (diff)
downloadvolse-hubzilla-df14d7abc472b49c8cb503dde789c9658ab73366.tar.gz
volse-hubzilla-df14d7abc472b49c8cb503dde789c9658ab73366.tar.bz2
volse-hubzilla-df14d7abc472b49c8cb503dde789c9658ab73366.zip
allow crepair to change name - as long as it isn't blank
Diffstat (limited to 'mod')
-rw-r--r--mod/crepair.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/crepair.php b/mod/crepair.php
index 536635278..ec963b105 100644
--- a/mod/crepair.php
+++ b/mod/crepair.php
@@ -50,6 +50,7 @@ function crepair_post(&$a) {
$contact = $r[0];
+ $name = ((x($_POST,'name')) ? $_POST['name'] : $contact['name']);
$nick = ((x($_POST,'nick')) ? $_POST['nick'] : '');
$url = ((x($_POST,'url')) ? $_POST['url'] : '');
$request = ((x($_POST,'request')) ? $_POST['request'] : '');
@@ -59,8 +60,9 @@ function crepair_post(&$a) {
$attag = ((x($_POST,'attag')) ? $_POST['attag'] : '');
$photo = ((x($_POST,'photo')) ? $_POST['photo'] : '');
- $r = q("UPDATE `contact` SET `nick` = '%s', `url` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s', `attag` = '%s'
+ $r = q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `url` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s', `attag` = '%s'
WHERE `id` = %d AND `uid` = %d LIMIT 1",
+ dbesc($name),
dbesc($nick),
dbesc($url),
dbesc($request),
@@ -139,6 +141,8 @@ function crepair_content(&$a) {
$o .= '<div class="error-message">' . $msg2 . EOL . EOL. $msg3 . '</div>';
+ $o .= EOL . '<a href="contacts/' . $cid . '">' . t('Return to contact editor') . '</a>' . EOL;
+
$tpl = get_markup_template('crepair.tpl');
$o .= replace_macros($tpl, array(
'$label_name' => t('Name'),