cvs diff: Diffing .
cvs diff: Diffing plugins
cvs diff: Diffing plugins/views_sets
cvs diff: Diffing versioncontrol_release
cvs diff: Diffing versioncontrol_release/includes
cvs diff: Diffing versioncontrol_release/plugins
cvs diff: Diffing versioncontrol_release/plugins/label_version_mapper
Index: versioncontrol_release/plugins/label_version_mapper/VersioncontrolReleaseLabelVersionMapperGeneric.class.php
===================================================================
RCS file: /Users/wright/drupal/local_repo/contributions/modules/versioncontrol_project/versioncontrol_release/plugins/label_version_mapper/VersioncontrolReleaseLabelVersionMapperGeneric.class.php,v
retrieving revision 1.3
diff -u -p -r1.3 VersioncontrolReleaseLabelVersionMapperGeneric.class.php
--- versioncontrol_release/plugins/label_version_mapper/VersioncontrolReleaseLabelVersionMapperGeneric.class.php	8 Jan 2011 00:39:36 -0000	1.3
+++ versioncontrol_release/plugins/label_version_mapper/VersioncontrolReleaseLabelVersionMapperGeneric.class.php	12 Jan 2011 18:56:02 -0000
@@ -9,14 +9,14 @@
 class VersioncontrolReleaseLabelVersionMapperGeneric implements VersioncontrolReleaseLabelVersionMapperInterface {
 
   public function GetVersionFromTag($tag_name, $project_node) {
-    return GetVersionFromLabel($tag_name, VERSIONCONTROL_LABEL_TAG);
+    return $this->GetVersionFromLabel($tag_name, VERSIONCONTROL_LABEL_TAG, $project_node);
   }
 
   public function GetVersionFromBranch($branch_name, $project_node) {
-    return GetVersionFromLabel($branch_name, VERSIONCONTROL_LABEL_BRANCH);
+    return $this->GetVersionFromLabel($branch_name, VERSIONCONTROL_LABEL_BRANCH, $project_node);
   }
 
-  protected function GetVersionFromLabel($label_name, $label_type) {
+  public function GetVersionFromLabel($label_name, $label_type, $project_node) {
     $fields = array('version_major', 'version_minor', 'version_patch');
     $version = array();
 
cvs diff: Diffing versioncontrol_release/scripts
cvs diff: Diffing views
