To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83870
User kso changed the following:
What |Old value |New value
================================================================================
Status|NEW |STARTED
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Wed Mar 12 14:19:34 +0000
2008 -------
Fix got broken on MWS due another fix. Following patch will solve the issue
again.
RCS file: /cvs/ucb/ucb/source/core/ucbcmds.cxx,v
retrieving revision 1.17.46.1
diff -c -r1.17.46.1 ucbcmds.cxx
*** ucbcmds.cxx 2 Jan 2008 15:29:31 -0000 1.17.46.1
--- ucbcmds.cxx 12 Mar 2008 14:16:43 -0000
***************
*** 502,507 ****
--- 502,515 ----
{
aName = rSourceURL;
}
+
+ // query, fragment present?
+ sal_Int32 nPos = aName.indexOf( '?' );
+ if ( nPos == -1 )
+ nPos = aName.indexOf( '#' );
+
+ if ( nPos != -1 )
+ aName = aName.copy( 0, nPos );
}
return rtl::OUString( aName );
}
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]