Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of git://git.zendframework.com/zf
Browse files Browse the repository at this point in the history
Conflicts:
	.gitignore
  • Loading branch information
DASPRiD committed Aug 20, 2011
10 parents 3787826 + f6501d5 + 74b0454 + ea99bf1 + e2703e7 + 90db7ae + b2f5380 + d6ee2dd + 2dae9df + 15a2e1f commit ceecda2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Storage/Writable/Maildir.php
Expand Up @@ -347,8 +347,8 @@ public function renameFolder($oldName, $newName)
protected function _createUniqueId()
{
$id = '';
$id .= function_exists('microtime') ? microtime(true) : (time() . ' ' . rand(0, 100000));
$id .= '.' . (function_exists('posix_getpid') ? posix_getpid() : rand(50, 65535));
$id .= microtime(true);
$id .= '.' . getmypid();
$id .= '.' . php_uname('n');

return $id;
Expand Down
1 change: 0 additions & 1 deletion tools/phptools
Submodule phptools deleted from d232cb

0 comments on commit ceecda2

Please sign in to comment.