Overview
Comment: | Ajout signal édition membre cf [743d7e1483] |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
225b85cec2027d182c35e4fc55b1e2dd |
User & Date: | bohwaz on 2017-06-20 00:44:15 |
Other Links: | branch diff | manifest | tags |
References
2017-06-20
| ||
00:45 | • Ticket [743d7e1483] Signaux status still Fixed with 3 other changes artifact: 55fc2118b7 user: bohwaz | |
Context
2017-06-30
| ||
05:42 | Déplacement de la grosse majorité de la logique de DB dans KD2, suppression des méthodes simple* dépréciées check-in: 8cf9568498 user: bohwaz tags: dev | |
2017-06-20
| ||
00:44 | Ajout signal édition membre cf [743d7e1483] check-in: 225b85cec2 user: bohwaz tags: dev | |
2017-06-08
| ||
06:12 | Remettre la connexion 2FA/OTP en état de marche check-in: aabf6f702a user: bohwaz tags: dev | |
Changes
Modified src/include/lib/Garradin/Membres.php from [615bdf928b] to [c8a6c9bf0d].
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
}
if (empty($data))
{
return true;
}
return $db->simpleUpdate('membres', $data, 'id = '.(int)$id);
}
public function get($id)
{
$db = DB::getInstance();
$config = Config::getInstance();
|
| > > > > |
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
} if (empty($data)) { return true; } $success = $db->simpleUpdate('membres', $data, 'id = '.(int)$id); Plugin::fireSignal('membre.edit', $data); return $success; } public function get($id) { $db = DB::getInstance(); $config = Config::getInstance(); |