3v4l.org

run code in 300+ PHP versions simultaneously
<?php class User{ var $username; var $created; var $actions = array(); var $sort; var $filterby; var $filtervalue; function __construct($username){ $this->username = $username; $this->created = new DateTime(null); $this->sort = "User::action_sort_name"; $this->filterby=null; $this->filtervalue=null; } function get_username(){ return $this->username; } function add_action($pillname){ array_push($this->actions, new Action($pillname) ); } function set_sort_method($sort_name){ $this->sort = $sort_name; } function get_sort_method(){ return $this->sort; } function sort_actions(){ usort($this->actions, $this->sort); } function get_display_actions(){ if ($this->filtervalue != null){ $res = array_filter($this->actions, $this->filterby); $pr = print_r($res, true); return $res; } return $this->actions; } function get_pill_names(){ $pill_names = array(); foreach($this->actions as $action){ array_push($pill_names, $action->pillname); } return array_unique($pill_names); } function set_filtervalue($val){ $this->filtervalue = $val; } function set_filterby($val){ $this->filterby = $val; } public function action_filter_name($a){ $res = ($a->pillname == $this->filtervalue); return $res; } public function action_filter_time($a){ /* before this time */ if ($a > $this->filtervalue){ return true; } } public static function action_sort_name($a, $b){ if ($a->pillname == $b->pillname){ return 0; } return ($a->pillname < $b->pillname) ? -1 : 1 ; } public static function action_sort_date($a, $b){ if ($a->datetime == $b->datetime){ return 0; } return ($a->datetime < $b->datetime) ? -1 : 1 ; } } class Action{ var $pillname; var $datetime; function __construct($pillname){ $this->pillname = $pillname; $this->datetime = new DateTime(null); } } echo serialize(new User(badger)) ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "badger" in /in/QnhAV:90 Stack trace: #0 {main} thrown in /in/QnhAV on line 90
Process exited with code 255.
Output for 7.4.33
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.002181";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.32
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003024";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.30
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.002972";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.29
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003261";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.28
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.005880";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.27
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003173";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.26
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003316";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.25
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003528";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.24
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003493";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.23
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003196";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.22
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.010369";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.21
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.010183";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.20
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003342";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.16
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.008199";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.15
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009439";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.14
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.008464";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.13
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009929";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.12
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.008807";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.11
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.014488";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.10
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.012319";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.9
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.010823";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.8
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.011961";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.7
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009544";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.6
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000473";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.5
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003539";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.4
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009033";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.3
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.008771";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.1
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.023043";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.4.0
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.020422";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.33
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 14:31:02.002127";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.32
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 14:31:02.002116";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.31
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003284";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.30
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003581";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.29
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.007908";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.28
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.008344";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.27
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.015608";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.26
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.010933";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.25
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009790";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.24
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009224";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.23
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.013662";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.21
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.012582";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.20
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009820";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.19
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.010772";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.18
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.004347";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.17
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.011501";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.16
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009302";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.13
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.003836";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.12
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.036029";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.11
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.083060";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.10
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.017008";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.9
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.044225";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.8
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.027659";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.7
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.061825";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.6
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.018211";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.5
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.033458";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.4
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.057668";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.3
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.026393";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.2
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.036374";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.1
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.021056";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.3.0
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.035139";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.33
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009022";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.32
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.012317";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.31
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009396";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.30
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.012297";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.29
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.011701";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.26
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.040498";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.25
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.015979";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.24
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.034562";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.23
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.089093";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.22
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.044915";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.21
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.012976";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.20
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.016577";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.19
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.052255";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.18
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.051203";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.17
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.015879";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.16
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.089420";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.15
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.047831";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.14
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.028724";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.13
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.014633";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.12
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.044648";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.11
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000287";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.10
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.023878";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.9
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.040480";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.8
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.033639";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.7
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000338";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.6
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000354";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.5
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.031540";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.4
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.084839";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.3
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.086044";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.2
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000235";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.1
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.013030";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.2.0
Warning: Use of undefined constant badger - assumed 'badger' (this will throw an Error in a future version of PHP) in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000244";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.33
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.020548";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.32
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.026359";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.31
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.058164";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.30
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.075071";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.29
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.035653";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.28
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.039547";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.27
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.026010";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.26
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.092544";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.25
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.043334";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.24
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.104497";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.23
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.075427";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.22
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.045086";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.21
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.014176";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.20
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000391";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.19
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.042234";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.18
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.061782";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.17
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000347";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.16
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.029923";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.15
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.107235";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.14
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.033811";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.13
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.010793";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.12
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.016474";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.11
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.013528";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.10
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.037162";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.9
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.023929";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.8
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.034116";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.7
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.061595";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.6
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.039220";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.5
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.029235";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.4
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.036869";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 5.5.14 - 5.5.35, 5.5.37 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.4, 7.0.6 - 7.0.23, 7.0.25 - 7.0.33, 7.1.3
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.2
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.009250";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.1
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.078095";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 7.1.0
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:02.028807";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 5.5.36, 7.0.5, 7.0.24
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:26:"2015-11-11 15:31:03.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 5.5.0 - 5.5.1, 5.5.3 - 5.5.13
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:19:"2015-11-11 15:31:02";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}
Output for 5.5.2
Notice: Use of undefined constant badger - assumed 'badger' in /in/QnhAV on line 90 O:4:"User":6:{s:8:"username";s:6:"badger";s:7:"created";O:8:"DateTime":3:{s:4:"date";s:19:"2015-11-11 15:31:03";s:13:"timezone_type";i:3;s:8:"timezone";s:16:"Europe/Amsterdam";}s:7:"actions";a:0:{}s:4:"sort";s:22:"User::action_sort_name";s:8:"filterby";N;s:11:"filtervalue";N;}

preferences:
289.81 ms | 402 KiB | 330 Q