Jump to content

Znaki niedozwolone w nazwie produktu


quendi

Recommended Posts

Istnieje jakaś możliwość, która pozwoli na używanie niedozwolonych znaków w nazwie produktów? Chodzi mi tutaj o następujące znaki: <>;=#{}.

Domyślam się, że pewnie trzeba przerabiać jakieś klasy. Np. Validate.php.

 

/**
   * Check for product or category name validity
   *
   * @param string $name Product or category name to validate
   * @return boolean Validity is ok or not
   */
   public static function isCatalogName($name)
   {
    return preg_match('/^[^<>;=#{}]*$/u', $name);
   }

 

Najbardziej zależy mi na znakach < >, ale usunięcie ich z wiersza return preg_match('/^[^<>;=#{}]*$/u', $name); nie pomaga.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...