From: <var...@us...> - 2020-03-23 10:43:07
|
Revision: 10153 http://sourceforge.net/p/phpwiki/code/10153 Author: vargenau Date: 2020-03-23 10:43:05 +0000 (Mon, 23 Mar 2020) Log Message: ----------- Fix typos in ASCIIMathPHP.class.php Modified Paths: -------------- trunk/lib/ASCIIMathPHP/ASCIIMathPHP.class.php Modified: trunk/lib/ASCIIMathPHP/ASCIIMathPHP.class.php =================================================================== --- trunk/lib/ASCIIMathPHP/ASCIIMathPHP.class.php 2019-09-05 11:12:35 UTC (rev 10152) +++ trunk/lib/ASCIIMathPHP/ASCIIMathPHP.class.php 2020-03-23 10:43:05 UTC (rev 10153) @@ -111,7 +111,7 @@ { $key_arr = array_keys($this->_child_arr); $num_key = count($key_arr); - $tmp_arr = arry(); + $tmp_arr = array(); for ($i = 0;$i < $num_key;$i++) { if ($i == $idx) { @@ -126,7 +126,7 @@ { $key_arr = array_keys($this->_child_arr); $num_key = count($key_arr); - $tmp_arr = arry(); + $tmp_arr = array(); for ($i = 0;$i < $num_key;$i++) { $tmp_arr[$key_arr[$i]] = $this->_child_arr[$key_arr[$i]]; @@ -228,7 +228,7 @@ public function getParentId() { - return($this->parent_id); + return($this->_parent_id); } public function getParentNode() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |