Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/28/2012 in all areas

  1. Everytime I need to delete a long list of files or images on a page, I wish there were a button to toggle all to delete.
    1 point
  2. Although I'm sure many PHP veterans already know, that's Hebrew for :: It does baffle me why they've never changed the error name.
    1 point
  3. Update: I now have PW running on nginx. It took a little longer than expected & I'll post more when I've investigated it further.
    1 point
  4. So, last one for today. Just threw it on a site I am currently developing which uses the great Futura theme from nikola. It just works and looks good imho (eleminated the sidebar earlier, though):
    1 point
  5. Soma, I've added this capability to Sanitizer. To use it, specify Sanitizer::translate as the second param to $sanitizer->pageName(), i.e. $name = $sanitizer->pageName($name, Sanitizer::translate); To make it work with the ImportPagesCSV module, edit the module file. Search for this: if($name == 'title') $page->name = $this->sanitizer->pageName($value); and replace it with this: if($name == 'title') $page->name = $this->sanitizer->pageName($value, Sanitizer::translate); I'm going to make the same change in the module itself here, but need to think a little more about how to avoid messing up anyone that's already using it. If someone is already using the module, then upgrades, it's feasible this could cause it to create new pages when it should be updating existing they had imported in a past version. I'll probably make it a config option or something.
    1 point
×
×
  • Create New...