Skip to content

Commit 26f9ce3

Browse files
committedSep 7, 2016
underped the derpy derp
1 parent e56c30d commit 26f9ce3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/Log.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,11 @@ private static function getParentHash() {
236236
* @return string
237237
*/
238238
private static function getParentPath() {
239-
return implode('.', self::$aHashHistory) . '.';
239+
if (count(self::$aHashHistory)) {
240+
return implode('.', self::$aHashHistory) . '.';
241+
}
242+
243+
return '';
240244
}
241245

242246
/**

0 commit comments

Comments
 (0)
Please sign in to comment.