re-add shuffling paste list
This commit is contained in:
parent
78e75d5a3f
commit
53ab57627e
|
@ -367,11 +367,9 @@ class Filesystem extends AbstractData
|
||||||
$opened = 0;
|
$opened = 0;
|
||||||
$limit = $batchsize * 10; // try at most 10 times $batchsize pastes before giving up
|
$limit = $batchsize * 10; // try at most 10 times $batchsize pastes before giving up
|
||||||
$time = time();
|
$time = time();
|
||||||
foreach ($this->_getPasteIterator() as $file) {
|
$files = $this->getAllPastes();
|
||||||
if ($file->isDir()) {
|
shuffle($files);
|
||||||
continue;
|
foreach ($files as $pasteid) {
|
||||||
}
|
|
||||||
$pasteid = $file->getBasename('.php');
|
|
||||||
if ($this->exists($pasteid)) {
|
if ($this->exists($pasteid)) {
|
||||||
$data = $this->read($pasteid);
|
$data = $this->read($pasteid);
|
||||||
if (
|
if (
|
||||||
|
|
Loading…
Reference in New Issue