File | Line | Event |
---|---|---|
cron.php | 46 | default |
Mage/Adminhtml/Controller/Action.php | 159 | adminhtml_controller_action_predispatch_start |
Mage/Adminhtml/Block/Customer/Edit/Tab/Carts.php | 61 | adminhtml_block_html_before |
Mage/Adminhtml/Block/Report/Grid.php | 186 | adminhtml_widget_grid_filter_collection |
Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Meta.php | 76 | adminhtml_cms_page_edit_tab_meta_prepare_form |
Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Design.php | 125 | adminhtml_cms_page_edit_tab_design_prepare_form |
Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Main.php | 119 | adminhtml_cms_page_edit_tab_main_prepare_form |
Mage/Adminhtml/Block/Cms/Page/Edit/Tab/Content.php | 98 | adminhtml_cms_page_edit_tab_content_prepare_form |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -L app/design/frontend -regex '.*\(shipping\|billing\|shipping_method\|payment\).phtml' -exec grep -L formkey {} \; \ | |
| xargs sed -i 's/<\/form>/<?php echo $this->getBlockHtml("formkey") ?><\/form>/g' | |
find -L skin/frontend -name 'opcheckout.js' -exec grep -L form_key {} \; \ | |
| xargs sed -i 's/if (elements\[i\].name=='\''payment\[method\]'\'') {/if (elements[i].name=='\''payment[method]'\'' || elements[i].name == '\''form_key'\'') {/g' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Updated price.phtml without WEEE | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the MIT License | |
* It is available through the world-wide-web at this URL: | |
* http://opensource.org/licenses/mit-license.php | |
* |