From: <var...@us...> - 2012-11-14 16:49:32
|
Revision: 8454 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8454&view=rev Author: vargenau Date: 2012-11-14 16:49:23 +0000 (Wed, 14 Nov 2012) Log Message: ----------- elseif Modified Paths: -------------- trunk/lib/difflib.php trunk/lib/gif.php Modified: trunk/lib/difflib.php =================================================================== --- trunk/lib/difflib.php 2012-11-14 16:44:11 UTC (rev 8453) +++ trunk/lib/difflib.php 2012-11-14 16:49:23 UTC (rev 8454) @@ -275,7 +275,7 @@ $this->in_seq[$this->seq[$k]] = false; $this->seq[$k] = $y; $this->in_seq[$y] = 1; - } else if (empty($this->in_seq[$y])) { + } elseif (empty($this->in_seq[$y])) { $k = $this->_lcs_pos($y); assert($k > 0); $ymids[$k] = $ymids[$k - 1]; Modified: trunk/lib/gif.php =================================================================== --- trunk/lib/gif.php 2012-11-14 16:44:11 UTC (rev 8453) +++ trunk/lib/gif.php 2012-11-14 16:49:23 UTC (rev 8454) @@ -86,7 +86,7 @@ if (isSet($gif) && (@get_class($gif) == "cgif") && $gif->loaded()) { $width = $gif->width(); $height = $gif->height(); - } else if (@file_exists($gif)) { + } elseif (@file_exists($gif)) { $myGIF = new CGIF(); if (!$myGIF->getSize($gif, $width, $height)) { return false; @@ -763,7 +763,7 @@ if ($bgColor != -1) { $bgColor = $this->m_img->m_gih->m_colorTable->colorIndex($bgColor); } - } else if ($this->m_gfh->m_bGlobalClr) { + } elseif ($this->m_gfh->m_bGlobalClr) { $nColors = $this->m_gfh->m_nTableSize; $rgbq = $this->m_gfh->m_colorTable->toRGBQuad(); if ($bgColor != -1) { @@ -862,7 +862,7 @@ if ($bgColor != -1) { $bgColor = $this->m_img->m_gih->m_colorTable->colorIndex($bgColor); } - } else if ($this->m_gfh->m_bGlobalClr) { + } elseif ($this->m_gfh->m_bGlobalClr) { $nColors = $this->m_gfh->m_nTableSize; $pal = $this->m_gfh->m_colorTable->toString(); if ($bgColor != -1) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |