|
@@ 52-56 (lines=5) @@
|
| 49 |
|
$state_array = null; |
| 50 |
|
|
| 51 |
|
// Decode The State |
| 52 |
|
if(request('state') && request('tab') == $tab){ |
| 53 |
|
$state_base64 = request('state'); |
| 54 |
|
$state_decoded = urlsafe_b64decode($state_base64); |
| 55 |
|
$state_array = json_decode($state_decoded,true); |
| 56 |
|
} |
| 57 |
|
|
| 58 |
|
// Append the state cache key/value pairs to the new cache... |
| 59 |
|
if(isset($state_array['cache'])){ |
|
@@ 109-113 (lines=5) @@
|
| 106 |
|
$state_array = null; |
| 107 |
|
|
| 108 |
|
// Decode the State |
| 109 |
|
if(request('state') && request('tab') == $tab){ |
| 110 |
|
$state_base64 = request('state'); |
| 111 |
|
$state_decoded = urlsafe_b64decode($state_base64); |
| 112 |
|
$state_array = json_decode($state_decoded,true); |
| 113 |
|
} |
| 114 |
|
|
| 115 |
|
$cursor = null; |
| 116 |
|
|