Skip to content

Commit

Permalink
fixing misnamed class
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisFrench committed Sep 1, 2015
1 parent f5ad2c4 commit 075215d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Activity/Models/Actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public static function displayValue($value, $format='html')
foreach ($value as $k=>$v)
{
if (is_array($v)) {
$string .= $k .'=' . \DscArrayHelper::toString($v, "=", "|");
$string .= $k .'=' . \Dsc\ArrayHelper::toString($v, "=", "|");
} else {
$string .= $k .'=' . $v . "|";
}
Expand All @@ -231,7 +231,7 @@ public static function displayValue($value, $format='html')
foreach ($value as $k=>$v)
{
if (is_array($v)) {
$string .= '<li><b>'. $k .':</b> ' . \DscArrayHelper::toString($v) . '</li>';
$string .= '<li><b>'. $k .':</b> ' . \Dsc\ArrayHelper::toString($v) . '</li>';
} else {
$string .= '<li><b>'. $k .':</b> ' . $v . '</li>';
}
Expand Down

0 comments on commit 075215d

Please sign in to comment.