Hi
I believe these files have errors in them
administrator/components/com_hikashop/extensions/plg_hikashoppayment_authorize/authorize_end.php
Line 13 - <iframe name="frame" scrolling="auto" height="1000" width="660" Frameborder="no" src="<?php echo $vars["x_relay_url"].'&iframe='.$url;?>></iframe>
Missing end quotes "
<iframe name="frame" scrolling="auto" height="1000" width="660" Frameborder="no" src="<?php echo $vars["x_relay_url"].'&iframe='.$url;?>
"></iframe>
plugins/hikashoppayment/authorize/authorize_end.php
Line 13 - <iframe name="frame" scrolling="auto" height="1000" width="660" Frameborder="no" src="<?php echo $vars["x_relay_url"].'&iframe='.$url;?>></iframe>
Missing end quotes "
<iframe name="frame" scrolling="auto" height="1000" width="660" Frameborder="no" src="<?php echo $vars["x_relay_url"].'&iframe='.$url;?>
"></iframe>
administrator/components/com_hikashop/views/vote/tmpl/normal.php
Line 43 <input type="text" size="100" name="<?php echo $this->vote_type_input; ?>" value="<?php echo $this->element->vote_type."\"\"/>";?>
Missing end quotes ">
<input type="text" size="100" name="<?php echo $this->vote_type_input; ?>" value="<?php echo $this->element->vote_type."\"\"/>";?>
">
Line 54 <input type="text" size="100" name="<?php echo $this->vote_pseudo_input; ?>"
value="<?php if($newItem == true){echo "\"";}else if($this->element->vote_pseudo == '0'){echo $row->username."\" disabled=\"disabled\"";}else{echo $this->escape(@$this->element->vote_pseudo)."\"";}?> />
Incorrect closing tag / and missing end quotes
<input type="text" size="100" name="<?php echo $this->vote_pseudo_input; ?>"
value="<?php if($newItem == true){echo "\"";}else if($this->element->vote_pseudo == '0'){echo $row->username."\" disabled=\"disabled\"";}else{echo $this->escape(@$this->element->vote_pseudo)."\"";}?>
">
thanks Patrick