Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author thomstark

    (@thomstark)

    Yeah, in wp-content/plugins/file-away/lib/cls/class.fileaway_management.php

    around about line 342, here’s the line in question:

    $prettyfolder = str_replace(array('~', '--', '_', '.', '*'), ' ', "$first");

    change to:

    $prettyfolder = str_replace(array('~', '--', '_', '*'), ' ', "$first");

    Thread Starter kseniyasqo

    (@kseniyasqo)

    Oops, sorry to bug you again, but this change didn’t help, dots are still not allowed and cannot be printed.

    Plugin Author thomstark

    (@thomstark)

    Sorry.

    wp-content/plugins/file-away/lib/js/management.js

    line 337, replace this:

    $('table[id^="ssfa-table-"] tbody tr[id^="row-ssfa-create-dir-"] input').alphanum({allow : "~!@#$/^&()_+-={}[]’,”});`

    with this:

    $('table[id^="ssfa-table-"] tbody tr[id^="row-ssfa-create-dir-"] input').alphanum({allow : "~!@#$/^&()_+-={}[]’,.”});`

    the difference is the dot almost at the very end, after the comma.

    Thread Starter kseniyasqo

    (@kseniyasqo)

    I was browsing exactly the same file before I check if I got your answer:)

    Thank you very much and have a great day!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Allow dots when creating folders through admin interface’ is closed to new replies.