You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an error log with multiples of the same error. If I select "Delete all reports with the same message on this application" it doesn't delete ANY reports at all. I can delete one report at a time no problem.
It doesn't give any errors, it just doesn't delete anything.
The text was updated successfully, but these errors were encountered:
Issue is in components/lib/dao/dbDataProvider.cfc on Line 147
To fix it on mysql replace <cfset tmpMessage = replace(replace(tmpMessage,"[","[[]",'all'),"''","'")>
with <cfset tmpMessage = replace(tmpMessage,"''","'")>
I think that masking of"[" should only be used on mssql, as it is done in components/entryFinder.cfc:124
I have an error log with multiples of the same error. If I select "Delete all reports with the same message on this application" it doesn't delete ANY reports at all. I can delete one report at a time no problem.
It doesn't give any errors, it just doesn't delete anything.
The text was updated successfully, but these errors were encountered: