Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
riaf committed Jan 31, 2011
2 parents ff3e15a + d8126a7 commit 65d0e11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/org/openpear/model/OpenpearRelease.php
Expand Up @@ -55,7 +55,7 @@ protected function __after_create__($commit) {
url("package/{$package->name()}/downloads#{$this->id()}"),
$this->fm_version(),
$package->name(),
$this->version(). ($this->version_stab == 'stable' ? '': $this->version_stab)
($this->version_stab == 'stable' ? $this->version(): $this->version_stab)
));
$timeline->package_id($this->package_id());
$timeline->maintainer_id($this->maintainer_id());
Expand Down Expand Up @@ -153,6 +153,6 @@ public function atom_author(){
* @see vendors/org/rhaco/net/xml/Atom/AtomInterface#atom_href()
*/
public function atom_href(){
return url('package/'). $this->package_name();
return url('package/' . $this->package_name());
}
}

0 comments on commit 65d0e11

Please sign in to comment.