Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
catfan committed May 16, 2017
2 parents a01285c + 45efa2a commit 1134cd6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Medoo.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*!
* Medoo database framework
* https://medoo.in
* Version 1.4.1
* Version 1.4.2
*
* Copyright 2017, Angel Lai
* Released under the MIT license
Expand All @@ -28,6 +28,8 @@ class Medoo

protected $debug_mode = false;

protected $guid = 0;

public function __construct($options = null)
{
try {
Expand Down Expand Up @@ -337,7 +339,7 @@ protected function tableQuote($table)

protected function mapKey()
{
return ':MeDoO_' . uniqid();
return ':MeDoOmEdOo_' . $this->guid++;
}

protected function columnQuote($string)
Expand Down

0 comments on commit 1134cd6

Please sign in to comment.