Zotero > OOo stopped working after Firefox 3.0.6

Since the upgrade of Firefox to 3.0.6, when I try to use the Openoffice.org plugin, an error pops up: "Read problem. Property is write protected." In the background, the window "Openoffice.org Makros and Dialogs" shows this line highlited:

Mid(fnRemoveString, nTagStart, nEnd - nTagStart + 1, "")

in this function:

Function fnRemoveString(sSearchString As String, sTagName, sEnd) As String
Dim nTagStart As Long, nEnd As Long

fnRemoveString = sSearchString

nTagStart = InStr(fnRemoveString, sTagName)
If nTagStart = 0 Then Exit Function
nEnd = InStr(nTagStart, fnRemoveString, sEnd)
#If MSWD Then
'Mid(sSearchString, nTagStart, nEnd - nTagStart + 1) = ""
fnRemoveString = Left(fnRemoveString, nTagStart - 1) & Right(fnRemoveString, Len(fnRemoveString) - nEnd - Len(sEnd) + 1)
#Else
Mid(fnRemoveString, nTagStart, nEnd - nTagStart + 1, "")
#End If
End Function
Sign In or Register to comment.