Verified Commit cb1e195b authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3387695 by catch, mondrake, mfb: Use more entropy in TransactionManager

parent dd62dc1e
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@ public function push(string $name = ''): Transaction {
    }

    // Define an unique id for the transaction.
    $id = uniqid();
    $id = uniqid('', TRUE);

    // Add an item on the stack, increasing its depth.
    $this->addStackItem($id, new StackItem($name, $type));