Commit cfca7811 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix bug #31694

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68419 954022d7-b5bf-4e40-9824-e11837661b57
parent 7591d2a3
......@@ -4570,7 +4570,7 @@ TablePart.prototype.getTableIndexColumnByName = function(name)
TablePart.prototype.getTableNameColumnByIndex = function(index)
{
var res = null;
if(name === null || name === undefined || !this.TableColumns)
if(index === null || index === undefined || !this.TableColumns)
return res;
for(var i = 0; i < this.TableColumns.length; i++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment