No product selected

Issue #9 resolved
huseyin_kaya created an issue

When you go to /store/product without product id or slug you will get an PHP error, example:

A PHP Error was encountered

Severity: Warning

Message: Missing argument 1 for Store::product()

Filename: controllers/store.php

Line Number: 93

Comments (3)

  1. Błażej Adamczyk repo owner

    Thanks, here's solution:

    controller/store.php, line 93:

    public function product($slug = NULL) {
            $slug OR show_404();
    
  2. Log in to comment