5329c3827c
* Fixed a few layout bugs in new documentation * Fixed documentation table of contents indentation bug in IE6 (fixes #344) * Fixed a parser bug in Sensei_Doc_Section * Restructrured a bit some files of the documentation.
19 lines
297 B
PHP
19 lines
297 B
PHP
|
|
<code type="php">
|
|
try {
|
|
$conn->beginTransaction();
|
|
|
|
$user->save();
|
|
|
|
$conn->beginTransaction();
|
|
$group->save();
|
|
$email->save();
|
|
|
|
$conn->commit();
|
|
|
|
$conn->commit();
|
|
} catch(Exception $e) {
|
|
$conn->rollback();
|
|
}
|
|
</code>
|