Skip to content

Commit

Permalink
fixed AssetPackage::checkName()
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Jul 6, 2016
1 parent 25011fc commit c8357d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/AssetPackage.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function checkType($type)

public function checkName($name)
{
return strlen($name) > 1;
return strlen($name) > 0;
}

public function getFullName()
Expand Down

0 comments on commit c8357d5

Please sign in to comment.