minor bug fix
[openemr.git] / library / custom_template / save_as.php
blobd8448eac5994d8dde0d5322d86c17fa56998ebe4
1 <?php
2 // +-----------------------------------------------------------------------------+
3 // Copyright (C) 2011 Z&H Consultancy Services Private Limited <sam@zhservices.com>
4 //
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
18 // A copy of the GNU General Public License is included along with this program:
19 // openemr/interface/login/GnuGPL.html
20 // For more information write to the Free Software
21 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 //
23 // Author: Eldho Chacko <eldho@zhservices.com>
24 // Jacob T Paul <jacob@zhservices.com>
26 // +------------------------------------------------------------------------------+
28 //SANITIZE ALL ESCAPES
29 $sanitize_all_escapes=true;
32 //STOP FAKE REGISTER GLOBALS
33 $fake_register_globals=false;
36 require_once("../../interface/globals.php");
38 <html>
39 <head>
40 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
41 </head>
42 <body class="body_top">
43 <form>
44 <table>
45 <tr class="text">
46 <td>
47 <input type="text" name="saveas" id="saveas">
48 </td>
49 <td>
50 <a href="#" class="css_button"><span><?php echo htmlspecialchars (xl('OK'),ENT_QUOTES);?></span></a>
51 </td>
52 </tr>
53 </table>
54 </form>
55 </body>
56 </html>