[Cs-versionparse-commits] SF.net SVN: cs-versionparse:[15] trunk/0.1/cs_version.abstract.class.php
Status: Inactive
Brought to you by:
crazedsanity
|
From: <cra...@us...> - 2009-01-29 20:22:26
|
Revision: 15
http://cs-versionparse.svn.sourceforge.net/cs-versionparse/?rev=15&view=rev
Author: crazedsanity
Date: 2009-01-29 20:22:22 +0000 (Thu, 29 Jan 2009)
Log Message:
-----------
Fix invalid function/method calls (old debug stuff).
/cs_version.abstract.class.php:
* build_full_version_string():
-- remove creation of unused cs_globalFunctions{} object.
-- remove call to invalid cs_debug_print().
Modified Paths:
--------------
trunk/0.1/cs_version.abstract.class.php
Modified: trunk/0.1/cs_version.abstract.class.php
===================================================================
--- trunk/0.1/cs_version.abstract.class.php 2009-01-27 16:39:15 UTC (rev 14)
+++ trunk/0.1/cs_version.abstract.class.php 2009-01-29 20:22:22 UTC (rev 15)
@@ -216,7 +216,6 @@
unset($versionInfo['version_suffix']);
$retval = "";
- $gf = new cs_globalFunctions;
foreach($versionInfo as $name=>$value) {
if(strlen($retval)) {
$retval .= ".". $value;
@@ -230,7 +229,6 @@
}
}
else {
- cs_debug_backtrace(1);
throw new exception(__METHOD__ .": missing indexes in given array (". $missing .")");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|