mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
14 lines
292 B
PHP
Executable File
14 lines
292 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: lewis
|
|
* Date: 16/02/15
|
|
* Time: 15:42
|
|
*/
|
|
|
|
|
|
if ($_SESSION['screen_height'] != $_POST['height'] || $_SESSION['screen_width'] != $_POST['width']) {
|
|
$_SESSION['screen_height'] = $_POST['height'];
|
|
$_SESSION['screen_width'] = $_POST['width'];
|
|
}
|