~ubuntu-branches/ubuntu/hardy/squirrelmail/hardy-updates

« back to all changes in this revision

Viewing changes to src/addrbook_popup.php

  • Committer: Bazaar Package Importer
  • Author(s): Sam Johnston
  • Date: 2004-02-04 01:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20040204014212-ek9533qvd2vo1wa1
Tags: upstream-1.5.0
ImportĀ upstreamĀ versionĀ 1.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/**
 
4
 * addrbook_popup.php
 
5
 *
 
6
 * Copyright (c) 1999-2003 The SquirrelMail Project Team
 
7
 * Licensed under the GNU GPL. For full terms see the file COPYING.
 
8
 *
 
9
 * Frameset for the JavaScript version of the address book.
 
10
 *
 
11
 * $Id: addrbook_popup.php,v 1.23 2003/10/29 15:25:04 tassium Exp $
 
12
 * @package squirrelmail
 
13
 */
 
14
 
 
15
/** Path for SquirrelMail required files. */
 
16
define('SM_PATH','../');
 
17
 
 
18
/** SquirrelMail required files. */
 
19
require_once(SM_PATH . 'include/validate.php');
 
20
require_once(SM_PATH . 'functions/addressbook.php');
 
21
   
 
22
?>
 
23
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
 
24
 
 
25
<HTML>
 
26
    <HEAD>
 
27
        <TITLE><?php echo "$org_title: " . _("Address Book"); ?></TITLE>
 
28
    </HEAD>
 
29
    <FRAMESET ROWS="60,*" BORDER=0>
 
30
        <FRAME NAME="abookmain"
 
31
               MARGINWIDTH="0"
 
32
               SCROLLING="NO"
 
33
               BORDER="0"
 
34
               SRC="addrbook_search.php?show=form">
 
35
        <FRAME NAME="abookres"
 
36
               MARGINWIDTH="0"
 
37
               BORDER="0"
 
38
              SRC="addrbook_search.php?show=blank">
 
39
    </FRAMESET>
 
40
</HTML>