View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000831 | OXID eShop (all versions) | 3.1. Design, GUI, UX | public | 2009-04-27 14:48 | 2009-05-08 10:31 |
Reporter | simply because | Assigned To | |||
Priority | high | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.1.1 revision 18442 | ||||
Fixed in Version | 4.2.0 revision 23610 | ||||
Summary | 0000831: Sorting by ... | ||||
Description | It is not possible to put a blank, dash or dot in the sorting title. I am trying to use a sorting by oxartnum beside the sorting by price. The function in itself works fine but when I write Artikel-Nr. in the cust_lang.php I am getting an error message: Parse error: syntax error, unexpected ',' in /xxx/yyy/pe4/core/smarty/plugins/function.assign_adv.php(95) : eval()'d code on line 1 So you have to write everything in one word: Artikelnummer - which is too long. In version PE 3xy it works. | ||||
Tags | No tags attached. | ||||
Theme | |||||
Browser | All | ||||
PHP Version | 5.2.6 | ||||
Database Version | 5.0.33 | ||||
|
Reproduced the same problem by changing the name "Title" (one of sorting options in View) in lang.php file. Also strange is that when I put the title "Arti.kel", then drop was removed and title displayed as "Artikel" (dot should not be removed). When title inserted "Artikel.Nr." - then the described error message occured. When title inserted "Arti-kel" - then the title "oxtitle" was displayed. Please check these cases also - it should display the title exactly as it is written in the lang.php or cust_lang.php files. |
|
Problems in sort_guestbook.snippet.tpl & sort.snippet.tpl templates: sort_guestbook.snippet.tpl was: [{assign_adv var="columnnames" value="array ( 'oxgbentries.oxcreate' => $columnnames_oxtitle, 'oxuser.oxusername' => $columnnames_oxprice ) "}] should be: [{assign_adv var="columnnames" value="array ( 'oxgbentries.oxcreate' => '$columnnames_oxtitle', 'oxuser.oxusername' => '$columnnames_oxprice' ) "}] sort.snippet.tpl was: [{assign_adv var="columnnames" value="array ( 'oxtitle' => $columnnames_oxtitle, 'oxprice' => $columnnames_oxprice, 'oxvarminprice' => $columnnames_oxprice )"}] should be: [{assign_adv var="columnnames" value="array ( 'oxtitle' => '$columnnames_oxtitle', 'oxprice' => '$columnnames_oxprice', 'oxvarminprice' => '$columnnames_oxprice' )"}] NOTICE: this template change comes with next major release, so if you need fix ASAP, please fix it by your own according given example |