minor adjustments to make the form work as designed
This commit is contained in:
parent
d5d6158973
commit
1896855c85
@ -68,7 +68,7 @@ function connedit_post(&$a) {
|
||||
|
||||
call_hooks('contact_edit_post', $_POST);
|
||||
|
||||
if($orig_record['abook_flags'] & ABOOK_FLAG_SELF) {
|
||||
if($orig_record[0]['abook_flags'] & ABOOK_FLAG_SELF) {
|
||||
$autoperms = intval($_POST['autoperms']);
|
||||
}
|
||||
else {
|
||||
@ -216,9 +216,10 @@ function connedit_post(&$a) {
|
||||
$arr = array('channel_id' => local_user(), 'abook' => $a->poi);
|
||||
call_hooks('accept_follow', $arr);
|
||||
}
|
||||
|
||||
dbg(1);
|
||||
if(! is_null($autoperms))
|
||||
set_pconfig(local_user(),'system','autoperms',(($autoperms) ? $abook_my_perms : 0));
|
||||
dbg(0);
|
||||
|
||||
connedit_clone($a);
|
||||
|
||||
|
@ -9,12 +9,6 @@
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{if $self}}
|
||||
<div class="abook-autotext">
|
||||
<div id="autoperm-desc" class="descriptive-paragraph">{{$autolbl}}</div>
|
||||
{{include file="field_checkbox.tpl" field=$autoperms}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
|
||||
<div id="contact-edit-wrapper">
|
||||
@ -34,6 +28,15 @@
|
||||
|
||||
|
||||
<form id="abook-edit-form" action="connedit/{{$contact_id}}" method="post" >
|
||||
|
||||
{{if $self}}
|
||||
<div class="abook-autotext">
|
||||
<div id="autoperm-desc" class="descriptive-paragraph">{{$autolbl}}</div>
|
||||
{{include file="field_checkbox.tpl" field=$autoperms}}
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
|
||||
<input type="hidden" name="contact_id" value="{{$contact_id}}">
|
||||
<input id="contact-closeness-mirror" type="hidden" name="closeness" value="{{$close}}" />
|
||||
|
||||
|
Reference in New Issue
Block a user