OK, maybe not a bug as such, but probably not the intent ?

Seen in 1.3.8 and still in 1.3.9d.

./admin/orders.php

line 716 (in 1.3.9d):

$search = " and (op.products_model like '%" . $keywords . "%' or op.products_name like '" . $keywords . "%')";
does not allow a search match in all parts of product name as leading wildcard is missing on keyword. Can be solved by adding in % as:

$search = " and (op.products_model like '%" . $keywords . "%' or op.products_name like '%" . $keywords . "%')";
Note: For 1.3.8, then you need to of applied bugfix http://www.zen-cart.com/forum/showpo...7&postcount=18 for the 'Search by Product Name' field to work.