Can't redirect projects with dash in name

Issue #9 resolved
Jason Pierce created an issue

Input validation is using a function that only allows alpha and numeric characters. Need to change this to separate validations or a regexp to also allow dashes and underscores.

Comments (1)

  1. Jason Pierce reporter

    $validation_expr = "/^[A-Za-z0-9_-]*$/";

    Looks like a regexp did the trick just fine! Problem solved.

  2. Log in to comment