Changeset 17374
- Timestamp:
- Jan 16, 2013, 11:23:46 PM (13 years ago)
- File:
-
- 1 edited
-
branches/7.1/inc/classes/BxDolPageView.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/7.1/inc/classes/BxDolPageView.php ¶
r17271 r17374 121 121 122 122 $this -> checkAjaxMode(); 123 124 $oZ = new BxDolAlerts('system', 'page_init', 0, 0, array( 125 'page_name' => $this -> sPageName, 126 'page_data' => &$this -> aPage, 127 )); 128 $oZ->alert(); 123 129 } 124 130 … … 250 256 else { 251 257 $this -> genOnlyBlock( (int)$_REQUEST['pageBlock'], $_REQUEST['dynamic'] ); 258 259 $oZ = new BxDolAlerts('system', 'page_output_block', 0, 0, array( 260 'page_name' => $this -> sPageName, 261 'page_data' => &$this -> aPage, 262 'block_id' => (int)$_REQUEST['pageBlock'], 263 'block_code' => &$this -> sCode, 264 )); 265 $oZ->alert(); 266 252 267 header( 'Content-type:text/html;charset=utf-8' ); 253 268 echo $this -> sCode; 254 269 exit; 255 270 } 271 272 $oZ = new BxDolAlerts('system', 'page_output', 0, 0, array( 273 'page_name' => $this -> sPageName, 274 'page_data' => &$this -> aPage, 275 'page_code' => &$this -> sCode, 276 )); 277 $oZ->alert(); 256 278 257 279 return $this -> sCode;
Note: See TracChangeset
for help on using the changeset viewer.