Duplicated call of strtoupper

This commit is contained in:
Adrien Crivelli 2019-08-11 19:40:48 -07:00
parent 7cca8d2bae
commit 2166458de3
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 1 additions and 1 deletions

View File

@ -1441,7 +1441,7 @@ class Worksheet implements IComparable
$this->parent->setActiveSheetIndex($this->parent->getIndex($this)); $this->parent->setActiveSheetIndex($this->parent->getIndex($this));
// set cell coordinate as active // set cell coordinate as active
$this->setSelectedCells(strtoupper($pCellCoordinate)); $this->setSelectedCells($pCellCoordinate);
return $this->parent->getCellXfSupervisor(); return $this->parent->getCellXfSupervisor();
} }