blob: d3e77776df355d99a6493c4ea5dc009b560e85ea (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
if (_RIGHTS_OK !== true) die();
global $_JSON;
$layout = readVariable($_GET['layout'],'id',0);
$_SESSION['pageLayout'] = $layout;
$_JSON['success'] = true;
$_JSON['pageLayout'] = $layout;
?>
|