Skip to content
Snippets Groups Projects
Commit b84ae882 authored by Prasad's avatar Prasad
Browse files

Fixed code convention typo

parent 59ae6b25
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class RecycleBin_List_View extends Vtiger_Index_View {
*/
public function initializeListViewContents(Vtiger_Request $request, Vtiger_Viewer $viewer) {
if($this-> listviewinitcalled){
if($this->listviewinitcalled){
return;
}
$moduleName = $request->getModule();
......@@ -224,7 +224,7 @@ class RecycleBin_List_View extends Vtiger_Index_View {
}
$viewer->assign('IS_MODULE_DELETABLE', $listViewModel->getModule()->isPermitted('Delete'));
$this-> listviewinitcalled = true; // to make a early exit if it is called more than once
$this->listviewinitcalled = true; // to make a early exit if it is called more than once
}
......@@ -355,4 +355,4 @@ class RecycleBin_List_View extends Vtiger_Index_View {
$headerCssInstances = array_merge($headerCssInstances, $cssInstances);
return $headerCssInstances;
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment