On Wed, Mar 31, 2010 at 11:32 PM, Kevin <[email protected]> wrote: > Two issues noted... > > 2) Reload didn't work > > Noted that on some sites, reload didn't work. It would not show anything > where before it would place a ^ or in my case configured to show UP near the > images on the page when it was used. > > I found that in my site.config for those sites, I had used the option: > > reloadMark: UP > > Which used to make the reload mark say UP instead of the default ^. This > option apparently is no longer valid and breaks the reload > ability. Removing it, allowed the reload function to work again showing an > ^ near the existing images to allow for re-uploading.
Try this approach--looking at the code I think it has changed. In some config file put this php code: $BOLTreloadMark = "<span class='marks'><sup>^</sup></span>"; Of course change ^ to UP. I suspect the reason was to give a bit more control over the reload mark definition. It is also more consistent with $BOLTmissingMark which can be defined the same way. Default: $BOLTmissingMark = "<span class='marks'><sup>?</sup></span>"; To be fully consistent we should have a reloadMark: false site.config option to disable the reload mark, just like the missingMark config option. Cheers, Dan P.S. As for #1 and the wrong path for missing marks it must be your cleanURLs as it works fine on my system. Have you solved that problem yet Kevin? -- You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/boltwire?hl=en.
