diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-04-26 14:26:55 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-04-26 14:27:05 +0100 |
| commit | 31bc7874190e33336a5ff742eac1246d7473e530 (patch) | |
| tree | bfd9d4cf8570ef955fa1627583bc08461e84cb7d /app/Controller/AjaxController.php | |
| parent | c6310c76a32767ad2a02c7050e92fbc8506572e8 (diff) | |
| download | webtrees-31bc7874190e33336a5ff742eac1246d7473e530.tar.gz webtrees-31bc7874190e33336a5ff742eac1246d7473e530.tar.bz2 webtrees-31bc7874190e33336a5ff742eac1246d7473e530.zip | |
Replace Zend_Session with our own class
Diffstat (limited to 'app/Controller/AjaxController.php')
| -rw-r--r-- | app/Controller/AjaxController.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/Controller/AjaxController.php b/app/Controller/AjaxController.php index d43820e463..b39dd9230b 100644 --- a/app/Controller/AjaxController.php +++ b/app/Controller/AjaxController.php @@ -16,8 +16,6 @@ namespace Fisharebest\Webtrees; * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -use Zend_Session; - /** * Class AjaxController - Base controller for all popup pages */ @@ -27,8 +25,6 @@ class AjaxController extends BaseController { * @return $this */ public function pageHeader() { - // We have finished writing session data, so release the lock - Zend_Session::writeClose(); // Ajax responses are always UTF8 header('Content-Type: text/html; charset=UTF-8'); $this->page_header = true; |
