3
0
Files
tomolino-processmaker/front/profile.form.php
2015-10-09 14:13:52 +02:00

15 lines
271 B
PHP

<?php
define('GLPI_ROOT', '../../..');
include (GLPI_ROOT."/inc/includes.php");
Session::checkRight("profile", "r");
$prof = new PluginProcessmakerProfile();
//Save profile
if (isset ($_POST['update_user_profile'])) {
$prof->update($_POST);
Html::back();
}
?>