forked from science-ation/science-ation
Compare commits
2 Commits
1385f0049f
...
d71d3818ad
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d71d3818ad | ||
![]() |
d32406db94 |
@ -967,7 +967,6 @@ function getDonationString($id)
|
||||
update_contactsinfo();
|
||||
update_organizationinfo();
|
||||
update_sponsorshipinfo();
|
||||
|
||||
update_activityinfo();
|
||||
},
|
||||
activate: function(event, ui) {
|
||||
@ -976,6 +975,7 @@ function getDonationString($id)
|
||||
update_contactsinfo();
|
||||
update_activityinfo();
|
||||
},
|
||||
collapsible: true,
|
||||
selected: -1
|
||||
});
|
||||
|
||||
@ -999,7 +999,7 @@ function getDonationString($id)
|
||||
$("#searchresults").hide();
|
||||
|
||||
if (id == -1) {
|
||||
$('#editor_tabs').tabs('option', 'selected', 0);
|
||||
$('#editor_tabs').tabs('option', 'active', 0);
|
||||
$('#editor_tabs').tabs('option', 'disabled', [1, 2, 3]);
|
||||
|
||||
$("#organizationinfo_organization").val("");
|
||||
@ -1022,7 +1022,7 @@ function getDonationString($id)
|
||||
$("[name=donortype]").attr('checked', '');
|
||||
|
||||
} else {
|
||||
$('#editor_tabs').tabs('option', 'selected', 0);
|
||||
$('#editor_tabs').tabs('option', 'active', 0);
|
||||
$('#editor_tabs').tabs('option', 'collapsible', true);
|
||||
$('#editor_tabs').tabs('option', 'disabled', []);
|
||||
}
|
||||
|
@ -86,6 +86,7 @@ if ($eid != $_SESSION['users_id']) {
|
||||
$type = $_SESSION['users_type'];
|
||||
|
||||
$u = user_load($eid);
|
||||
|
||||
/* Load the fields the user can edit, and theones that are required */
|
||||
$fields = array();
|
||||
$required = array();
|
||||
@ -185,6 +186,7 @@ if (get_value_from_array($_SESSION, 'embed') == true) {
|
||||
$newstatus = user_personal_info_status($u);
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
|
||||
function personal_save()
|
||||
{
|
||||
$("#debug").load("<?= $config['SFIABDIRECTORY'] ?>/user_personal.php?action=save", $("#personal_form").serializeArray());
|
||||
@ -389,7 +391,8 @@ if (in_array('committee', $u['types'])) {
|
||||
echo '</table>';
|
||||
}
|
||||
|
||||
echo '<input type="submit" onclick="personal_save()" value="' . i18n('Save Personal Information') . "\" />\n";
|
||||
echo '<input type="submit" onclick="personal_save();return false;" value="' . i18n('Save Personal Information') . "\" />\n";
|
||||
|
||||
echo '</form>';
|
||||
|
||||
echo '<br />';
|
||||
|
Loading…
x
Reference in New Issue
Block a user