Author: bhofmann
Date: Thu Oct 7 10:01:27 2010
New Revision: 1005389
URL: http://svn.apache.org/viewvc?rev=1005389&view=rev
Log:
SHINDIG-1442: fixed wrong concatenation typo
Modified:
shindig/trunk/php/src/social/sample/JsonDbOpensocialService.php
Modified: shindig/trunk/php/src/social/sample/JsonDbOpensocialService.php
URL:
http://svn.apache.org/viewvc/shindig/trunk/php/src/social/sample/JsonDbOpensocialService.php?rev=1005389&r1=1005388&r2=1005389&view=diff
==============================================================================
--- shindig/trunk/php/src/social/sample/JsonDbOpensocialService.php (original)
+++ shindig/trunk/php/src/social/sample/JsonDbOpensocialService.php Thu Oct 7
10:01:27 2010
@@ -85,7 +85,7 @@ class JsonDbOpensocialService implements
private $allMessageCollections = null;
protected function getDbFilename() {
- return sys_get_temp_dir() . '/' . 'ShindigDb' + getenv("BUILD_TAG") .
'.json';
+ return sys_get_temp_dir() . '/' . 'ShindigDb' . getenv('BUILD_TAG') .
'.json';
}
public function getDb() {