JNeuhoff wrote:Another bug:
I am trying to add another function to catalog/controller/product/category.php, like this:
Code: Select all
<search position="before"><![CDATA[}
?>]]></search>
It won't do it, nor does it log an error message.
You appear to be using a multiline search. I assume you are trying to match:
You can't do multiline searches.
You will need to use the offset feature. You can do it a few different ways, but since it looks like its the end of the file, try:
<search position="bottom" offset="1"></search>
you can leave the contents blank as bottom assumes the last line of the file, and offset means go up 1 line and add the code before that line.
I will see about improving the logging for that.