Why codeigniter shopping cart class doesn't allow any special character in the name?

后端 未结 5 1065
春和景丽
春和景丽 2020-12-29 09:32

I have a question just like in the title - Why codeigniter shopping cart class doesn\'t allow any special character in the name? When I\'m adding some item with normal name

5条回答
  •  情话喂你
    2020-12-29 10:24

    You can also optionally just modify the regular expression to allow quotes like so:

    $this->cart->product_name_rules = "\.\:\-_\"\' a-z0-9";
    

提交回复
热议问题