2
工作中有Opencart的一個功能,我需要更換如下:VQMOD頂替沒有多線搜索
protected function validateDelete() {
if (!$this->user->hasPermission('modify', 'catalog/download')) {
$this->error['warning'] = $this->language->get('error_permission');
應該是:
protected function validateDelete() {
if (!$this->user->hasPermission('delete', 'catalog/download')) {
$this->error['warning'] = $this->language->get('error_permission_delete');
我曾嘗試:
<search position="replace"><![CDATA[
protected function validateDelete() {
if (!$this->user->hasPermission('modify',]]></search>
<add><![CDATA[
protected function validateDelete() {
if (!$this->user->hasPermission('delete',
]]></add>
但它不工作。第三行出現在多個位置,所以不能在單行中替換。
請幫忙
感謝它的工作,但我需要驗證所需號碼的發生。 – seopower