Skip to content

Commit

Permalink
Space in Filename Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacarpet committed Jul 11, 2012
1 parent 002038b commit 075e7d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AsteriskTools
=============

A set of Asterisk PHP Tools developed for the PBX at work.
A set of Asterisk PHP Tools developed for the PBX at work.
2 changes: 1 addition & 1 deletion classes/class.AsteriskCacheUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private function _setIndexFile(){
}

private function _setQueueFile(){
$this->queueFile = $this->cachefolder . 'queue_ ' . $this->qResults['queueid'] . '.dat';
$this->queueFile = $this->cachefolder . 'queue_' . $this->qResults['queueid'] . '.dat';
if (!is_file($this->queueFile))
touch($this->queueFile);
$this->queuefp = fopen($this->queueFile, 'r+');
Expand Down

0 comments on commit 075e7d8

Please sign in to comment.