gnu-octave / SavannahAPI

Overview about open GNU Octave bugs.
GNU General Public License v3.0
4 stars 1 forks source link

# symbol in string causes issues with subsequent parameters #2

Closed NRJank closed 3 years ago

NRJank commented 3 years ago

wanted to do a query with a keyword search for "file #" (so Keywords=file%20%# )

having the # at the end of the string causes it to ignore all subsequent lines.

e.g., the following works:

Action=get
Limit=10
Format=HTMLCSS
Keywords=file%20#

but

Action=get
Keywords=file%20#
Limit=10
Format=HTMLCSS

ignores the Limit and Format parameters.

siko1056 commented 3 years ago

Thank you for the report @NRJank I'll take a look at it :wink:

siko1056 commented 3 years ago

With the previous changeset the situation might have improved. If not, please give another failing example here :wink:

NRJank commented 3 years ago

With the previous changeset the situation might have improved. If not, please give another failing example here 😉

seems fixed based on a few attempts to recreate the issues or something similar.