Skip to content

Commit a76efcc

Browse files
committed
Fix incorrect method
1 parent 113dfed commit a76efcc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Textpattern/Composer/Installer/Plugin/Manifest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ protected function import()
134134
{
135135
$plugin = (object) null;
136136
$plugin->name = basename($this->composerPackage->getPrettyName());
137-
$plugin->version = substr($this->composerPackage->getVPrettyVersion(), 0, 10);
137+
$plugin->version = substr($this->composerPackage->getPrettyVersion(), 0, 10);
138138
$plugin->author = '';
139139
$plugin->author_uri = '';
140140
$plugin->description = '';

0 commit comments

Comments
 (0)