php bug. disable error reporting on session_start() called after session_destroy().
[squirrelmail.git] / src / addrbook_popup.php
CommitLineData
5100704d 1<?php
895905c0 2
35586184 3/**
4 * addrbook_popup.php
5 *
35586184 6 * Frameset for the JavaScript version of the address book.
7 *
47ccfad4 8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 10 * @version $Id$
8f6f9ba5 11 * @package squirrelmail
54cbbcc4 12 * @subpackage addressbook
35586184 13 */
5100704d 14
30967a1e 15/**
16 * Path for SquirrelMail required files.
17 * @ignore
18 */
86725763 19define('SM_PATH','../');
20
8f6f9ba5 21/** SquirrelMail required files. */
5c4ff7bf 22include_once(SM_PATH . 'include/validate.php');
86725763 23require_once(SM_PATH . 'functions/addressbook.php');
91e0dccc 24
5100704d 25?>
12ff1cab 26<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
5100704d 27
04fa3c41 28<html>
29 <head>
be2b5012 30 <meta name="robots" content="noindex,nofollow">
04fa3c41 31 <title><?php echo "$org_title: " . _("Address Book"); ?></title>
32 </head>
39bfea8f 33 <frameset rows="60,*" border="0">
04fa3c41 34 <frame name="abookmain"
35 marginwidth="0"
36 scrolling="no"
37 border="0"
38 src="addrbook_search.php?show=form" />
39 <frame name="abookres"
40 marginwidth="0"
41 border="0"
42 src="addrbook_search.php?show=blank" />
43 </frameset>
f8a1ed5a 44</html>