59177427 |
1 | <?php |
7350889b |
2 | |
35586184 |
3 | /** |
4 | * page_header.php |
5 | * |
15e6162e |
6 | * Copyright (c) 1999-2002 The SquirrelMail Project Team |
35586184 |
7 | * Licensed under the GNU GPL. For full terms see the file COPYING. |
8 | * |
9 | * Prints the page header (duh) |
10 | * |
11 | * $Id$ |
12 | */ |
13 | |
46d38f78 |
14 | require_once('../functions/strings.php'); |
f3e14140 |
15 | require_once('../functions/imap_utf7_decode_local.php'); |
b01b21d0 |
16 | require_once('../functions/html.php'); |
978d53dc |
17 | require_once('../class/html.class.php'); |
43fdb2a4 |
18 | |
34c90574 |
19 | /* Always set up the language before calling these functions */ |
a07cd1a4 |
20 | function displayHtmlHeader( $title = 'SquirrelMail', $xtra = '', $do_hook = TRUE ) { |
692155b7 |
21 | |
2c21ef20 |
22 | global $theme_css, $custom_css, $base_uri; |
23 | |
8f1ba72b |
24 | echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' . |
25 | "\n\n<HTML>\n<HEAD>\n"; |
2c21ef20 |
26 | |
a714cb95 |
27 | if ( !isset( $custom_css ) || $custom_css == 'none' ) { |
692155b7 |
28 | if ($theme_css != '') { |
34c90574 |
29 | echo "<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"$theme_css\">"; |
692155b7 |
30 | } |
8f1ba72b |
31 | } else { |
2c21ef20 |
32 | echo '<LINK REL="stylesheet" TYPE="text/css" HREF="' . |
67dfe419 |
33 | $base_uri . 'themes/css/'.$custom_css.'">'; |
8f1ba72b |
34 | } |
85f4ce52 |
35 | |
237470b4 |
36 | if ($do_hook) { |
37 | do_hook("generic_header"); |
38 | } |
8f1ba72b |
39 | |
34c90574 |
40 | echo "\n<title>$title</title>$xtra</head>\n\n"; |
a07cd1a4 |
41 | } |
42 | |
85f4ce52 |
43 | function initPage () { |
44 | $page = new html(); |
45 | $page->addChild('','<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">'); |
46 | $page->addChild('HTML'); |
47 | return $page; |
48 | } |
49 | |
50 | function initHead ($title = 'SquirrelMail', $session=false) { |
51 | global $use_css, $compose_new_win, $compose_width, $compose_height, |
52 | $base_uri; |
53 | |
54 | if ($session != false) { |
55 | $compose_uri = 'src/compose.php?mailbox='. urlencode($mailbox).'&attachedmessages=true&session='."$session"; |
56 | } else { |
57 | $compose_uri = 'src/compose.php?newmessage=1'; |
58 | $session = 0; |
59 | } |
60 | |
61 | |
62 | $head = new html('head'); |
63 | $head->addChild('title', $title); |
64 | // if ($use_css) { |
65 | // $head->addChild('link','','','','', |
66 | // array('REL' => 'stylesheet', 'TYPE' => 'text/css', |
67 | // 'HREF' => $base_uri .'/css/read_body.css')); |
68 | // } |
69 | if ($compose_new_win == '1') { |
70 | if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) { |
71 | $compose_width = '640'; |
72 | } |
73 | if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) { |
74 | $compose_height = '550'; |
75 | } |
76 | $js = "function comp_in_new(comp_uri) {\n". |
77 | " if (comp_uri =='') {\n". |
78 | ' comp_uri = "'.$base_uri.$compose_uri."\";\n". |
79 | ' }'. "\n". |
80 | ' var newwin = window.open(comp_uri' . |
81 | ', "_blank",'. |
82 | '"width='.$compose_width. ',height='.$compose_height. |
83 | '",scrollbars="yes",resizable="yes");'."\n". |
84 | "}\n\n"; |
85 | |
86 | |
87 | $head->scriptAdd($js); |
88 | |
89 | $js = 'function sendMDN() {'."\n". |
90 | "mdnuri=window.location+'&sendreceipt=1';". |
91 | "var newwin = window.open(mdnuri,'right');". |
92 | "\n}\n\n"; |
93 | $head->scriptAdd($js); |
94 | } |
95 | return $head; |
96 | } |
97 | |
98 | function initBody($color, $javascript='') { |
99 | global $use_css; |
100 | |
101 | if (!$use_css) { |
102 | $body = new html('body','','','','', |
103 | array('bgcolor' => $color[4], 'text' => $color[8], 'link' => $color[7], |
104 | 'vlink' => $color[7], 'alink' => $color[7]), $javascript); |
105 | } else { |
106 | $body = new html('body','','','','','',$javascript); |
107 | } |
108 | return $body; |
109 | } |
110 | |
111 | |
112 | function getTop($color, $mailbox) { |
113 | |
114 | global $use_css, $languages, $squirrelmail_language, $frame_top, |
115 | $delimiter, $base_uri; |
116 | |
117 | if ( isset( $languages[$squirrelmail_language]['DIR']) ) { |
118 | $dir = $languages[$squirrelmail_language]['DIR']; |
119 | } else { |
120 | $dir = 'ltr'; |
121 | } |
122 | |
123 | if ( $dir == 'ltr' ) { |
124 | $rgt = 'right'; |
125 | $lft = 'left'; |
126 | } else { |
127 | $rgt = 'left'; |
128 | $lft = 'right'; |
129 | } |
130 | |
131 | |
132 | |
133 | if (!$use_css) { |
134 | $tbl_ar = array('bgcolor' => $color[4], 'border' => 0, 'width' => '100%', |
135 | 'cellspacing' => 0, 'cellpadding' => 2); |
136 | $row_ar = array('bgcolor' => $color[9]); |
137 | $col_ar = array('align' => $lft); |
138 | } else { |
139 | $tbl_ar = array('border' => 0, |
140 | 'cellspacing' => 0, 'cellpadding' => 2); |
141 | $row_ar = ''; |
142 | $col_ar = array('align' => $lft); |
143 | } |
144 | |
145 | $shortBoxName = imap_utf7_decode_local( |
146 | readShortMailboxName($mailbox, $delimiter)); |
147 | if ( $shortBoxName == 'INBOX' ) { |
148 | $shortBoxName = _("INBOX"); |
149 | } |
150 | |
151 | $top = new html('table','','','tp','tp',$tbl_ar); |
152 | $row = new html('tr','','','tp_r','tp_r',$row_ar); |
153 | |
154 | if ( $shortBoxName <> '' && strtolower( $shortBoxName ) <> 'none' ) { |
155 | $row->addChild('td',_("Current Folder") .':','','tp_c','tp_mbx_k', |
156 | array('align' => $lft)); |
157 | $row->addChild('td',$shortBoxName .' ',array('b'=>true),'tp_c', |
158 | 'tp_mbx_v',array('align' => $lft)); |
159 | } |
160 | $col = new html('td','','','tp_c','tp_so',array('align' => $rgt)); |
161 | if ($frame_top) { |
162 | $lnk_ar = array('href' => $base_uri.'src/signout.php', 'target' => $frame_top); |
163 | } else { |
164 | $lnk_ar = array('href' => $base_uri.'src/signout.php'); |
165 | } |
166 | $col->addChild('a', _("Sign Out"),array('b'=>true),'','',$lnk_ar); |
167 | $row->htmlAdd($col); |
168 | $top->htmlAdd($row); |
169 | |
170 | return $top; |
171 | } |
172 | |
173 | function getMenu($color,$mailbox) { |
174 | global $use_css, $languages, $squirrelmail_language, $frame_top, $base_uri, |
175 | $compose_new_win,$hide_sm_attributions; |
176 | |
177 | $urlMailbox = urlencode($mailbox); |
178 | |
179 | if ( isset( $languages[$squirrelmail_language]['DIR']) ) { |
180 | $dir = $languages[$squirrelmail_language]['DIR']; |
181 | } else { |
182 | $dir = 'ltr'; |
183 | } |
184 | |
185 | if ( $dir == 'ltr' ) { |
186 | $rgt = 'right'; |
187 | $lft = 'left'; |
188 | } else { |
189 | $rgt = 'left'; |
190 | $lft = 'right'; |
191 | } |
192 | |
193 | if (!$use_css) { |
194 | $tbl_ar = array('bgcolor' => $color[4], 'border' => 0, 'width' => '100%', |
195 | 'cellspacing' => 0, 'cellpadding' => 2); |
196 | $row_ar = array('bgcolor' => $color[4]); |
197 | $col_ar = array('align' => $lft); |
198 | } else { |
199 | $tbl_ar = array('border' => 0, |
200 | 'cellspacing' => 0, 'cellpadding' => 2); |
201 | $row_ar = ''; |
202 | $col_ar = array('align' => $lft); |
203 | } |
204 | |
205 | $menu = new html('table','','','mn','mn',$tbl_ar); |
206 | $row = new html('tr','','','mn','mn_r',$row_ar); |
207 | $col = new html('td','','','mn','mn_c',$col_ar); |
208 | $delimiter = new html('',' '); |
209 | if ($compose_new_win == '1') { |
210 | $col->addChild('a',_("Compose"),'','mn_c','mn_co', |
211 | array('href' => 'javascript:void(0)'), |
212 | array('onclick'=> 'comp_in_new()')); |
213 | } else { |
214 | $col->addChild('a',_("Compose"),'','mn_c','mn_co', |
215 | array('href' => $base_uri.'src/compose.php?mailbox='.$urlMailbox, |
216 | 'target' => 'right')); |
217 | } |
218 | $col->htmlAdd($delimiter); |
219 | $col->addChild('a',_("Addresses"),'','mn_c','mn_ad', |
220 | array('href' => $base_uri.'src/addressbook.php', |
221 | 'target' => 'right')); |
222 | $col->htmlAdd($delimiter); |
223 | $col->addChild('a',_("Folders"),'','mn_c','mn_fo', |
224 | array('href' => $base_uri.'src/folders.php', |
225 | 'target' => 'right')); |
226 | $col->htmlAdd($delimiter); |
227 | |
228 | $col->addChild('a',_("Options"),'','mn_c','mn_op', |
229 | array('href' => $base_uri.'src/options.php', |
230 | 'target' => 'right')); |
231 | $col->htmlAdd($delimiter); |
232 | $col->addChild('a',_("Search"),'','mn_c','mn_se', |
233 | array('href' => $base_uri.'src/search.php?mailbox='.$urlMailbox, |
234 | 'target' => 'right')); |
235 | $col->htmlAdd($delimiter); |
236 | $col->addChild('a',_("Help"),'','mn_c','mn_he', |
237 | array('href' => $base_uri.'src/help.php', |
238 | 'target' => 'right')); |
239 | |
240 | do_hook("menuline"); |
241 | $row->htmlAdd($col); |
242 | if (!$hide_sm_attributions) { |
243 | $col = new html('td','','','mn','mn_sm',array('align'=>$rgt)); |
244 | $col->addChild('a','SquirrelMail','','','', |
245 | array('href'=>'http://www.squirrelmail.org','target'=>'_blank')); |
246 | $row->htmlAdd($col); |
247 | } |
248 | $menu->htmlAdd($row); |
249 | return $menu; |
250 | } |
251 | |
a07cd1a4 |
252 | function displayInternalLink($path, $text, $target='') { |
253 | global $base_uri; |
254 | |
255 | if ($target != '') { |
256 | $target = " target=\"$target\""; |
257 | } |
a07cd1a4 |
258 | echo '<a href="'.$base_uri.$path.'"'.$target.'>'.$text.'</a>'; |
259 | } |
260 | |
aca403fa |
261 | function displayPageHeader($color, $mailbox, $xtra='', $session=false) { |
715225af |
262 | |
07687736 |
263 | global $delimiter, $hide_sm_attributions, $base_uri, $PHP_SELF, $frame_top, |
aca403fa |
264 | $compose_new_win, $username, $datadir, $compose_width, $compose_height, |
265 | $attachemessages, $session; |
715225af |
266 | |
715225af |
267 | $module = substr( $PHP_SELF, ( strlen( $PHP_SELF ) - strlen( $base_uri ) ) * -1 ); |
f3e14140 |
268 | if ($qmark = strpos($module, '?')) { |
269 | $module = substr($module, 0, $qmark); |
270 | } |
d03f3582 |
271 | if (!isset($frame_top)) { |
272 | $frame_top = '_top'; |
273 | } |
715225af |
274 | |
275 | /* |
276 | Locate the first displayable form element |
277 | */ |
aca403fa |
278 | |
cb6b53c6 |
279 | if ($session != false) { |
aca403fa |
280 | $compose_uri = 'src/compose.php?mailbox='. urlencode($mailbox).'&attachedmessages=true&session='."$session"; |
281 | } else { |
d7f8e6e6 |
282 | $compose_uri = 'src/compose.php?newmessage=1'; |
283 | $session = 0; |
aca403fa |
284 | } |
cb6b53c6 |
285 | |
715225af |
286 | switch ( $module ) { |
f3e14140 |
287 | case 'src/read_body.php': |
288 | if ($compose_new_win == '1') { |
289 | if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) { |
290 | $compose_width = '640'; |
291 | } |
292 | if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) { |
293 | $compose_height = '550'; |
294 | } |
295 | $js = "\n".'<script language="JavaScript" type="text/javascript">' . |
296 | "\n<!--\n"; |
d7f8e6e6 |
297 | $js .= "function comp_in_new(new_mes, comp_uri) {\n". |
298 | ' if (new_mes) { '."\n". |
43ee2b5c |
299 | " comp_uri = \"".$base_uri."src/compose.php?newmessage=1\";\n". |
d7f8e6e6 |
300 | ' } else { '."\n". |
301 | " if (comp_uri =='') {\n". |
302 | ' comp_uri = "'.$base_uri.$compose_uri."\";\n". |
303 | ' }'. "\n". |
304 | ' }'. "\n". |
305 | ' var newwin = window.open(comp_uri' . |
306 | ', "_blank", |
307 | "width='.$compose_width.",height=$compose_height". |
f3e14140 |
308 | ",scrollbars=yes,resizable=yes\");\n". |
309 | "}\n"; |
d7f8e6e6 |
310 | |
f3e14140 |
311 | $js .= "// -->\n". |
312 | "</script>\n"; |
313 | displayHtmlHeader ('Squirrelmail', $js); |
314 | } |
315 | displayHtmlHeader(); |
aca403fa |
316 | $onload = $xtra; |
f3e14140 |
317 | break; |
d7f8e6e6 |
318 | case 'src/compose.php': |
319 | $js = '<script language="JavaScript" type="text/javascript">' . |
320 | "\n<!--\n" . |
321 | "function checkForm() {\n". |
322 | "var f = document.forms.length;\n". |
323 | "var i = 0;\n". |
324 | "var pos = -1;\n". |
325 | "while( pos == -1 && i < f ) {\n". |
326 | "var e = document.forms[i].elements.length;\n". |
327 | "var j = 0;\n". |
328 | "while( pos == -1 && j < e ) {\n". |
329 | "if ( document.forms[i].elements[j].type == 'text' ) {\n". |
330 | "pos = j;\n". |
331 | "}\n". |
332 | "j++;\n". |
333 | "}\n". |
334 | "i++;\n". |
335 | "}\n". |
336 | "if( pos >= 0 ) {\n". |
337 | "document.forms[i-1].elements[pos].focus();\n". |
338 | "}\n". |
339 | "}\n"; |
340 | |
341 | $js .= "// -->\n". |
342 | "</script>\n"; |
343 | $onload = "onLoad=\"checkForm();\""; |
344 | displayHtmlHeader ('Squirrelmail', $js); |
345 | break; |
346 | |
715225af |
347 | default: |
aaf16822 |
348 | $js = '<script language="JavaScript" type="text/javascript">' . |
353616c4 |
349 | "\n<!--\n" . |
350 | "function checkForm() {\n". |
351 | "var f = document.forms.length;\n". |
352 | "var i = 0;\n". |
353 | "var pos = -1;\n". |
354 | "while( pos == -1 && i < f ) {\n". |
355 | "var e = document.forms[i].elements.length;\n". |
356 | "var j = 0;\n". |
357 | "while( pos == -1 && j < e ) {\n". |
358 | "if ( document.forms[i].elements[j].type == 'text' ) {\n". |
359 | "pos = j;\n". |
360 | "}\n". |
361 | "j++;\n". |
362 | "}\n". |
363 | "i++;\n". |
364 | "}\n". |
365 | "if( pos >= 0 ) {\n". |
366 | "document.forms[i-1].elements[pos].focus();\n". |
367 | "}\n". |
de19cd73 |
368 | "$xtra\n". |
9c3e6cd4 |
369 | "}\n"; |
f3e14140 |
370 | |
9c3e6cd4 |
371 | if ($compose_new_win == '1') { |
07687736 |
372 | if (!preg_match("/^[0-9]{3,4}$/", $compose_width)) { |
373 | $compose_width = '640'; |
9c3e6cd4 |
374 | } |
07687736 |
375 | if (!preg_match("/^[0-9]{3,4}$/", $compose_height)) { |
376 | $compose_height = '550'; |
9c3e6cd4 |
377 | } |
d7f8e6e6 |
378 | $js .= "function comp_in_new(new_mes, comp_uri) {\n". |
379 | ' if (new_mes) { '."\n". |
cb6b53c6 |
380 | " comp_uri = \"".$base_uri."src/compose.php?newmessage=1\";\n". |
d7f8e6e6 |
381 | ' } else { '."\n". |
382 | " if (comp_uri =='') {\n". |
383 | ' comp_uri = "'.$base_uri.$compose_uri."\";\n". |
384 | ' }'. "\n". |
385 | ' }'. "\n". |
d7f8e6e6 |
386 | ' var newwin = window.open(comp_uri' . |
387 | ', "_blank", |
f3e14140 |
388 | "width='.$compose_width.",height=$compose_height". |
9c3e6cd4 |
389 | ",scrollbars=yes,resizable=yes\");\n". |
390 | "}\n"; |
391 | } |
aaf16822 |
392 | $js .= "// -->\n". |
de19cd73 |
393 | "</script>\n"; |
715225af |
394 | $onload = "onLoad=\"checkForm();\""; |
aaf16822 |
395 | displayHtmlHeader ('Squirrelmail', $js); |
715225af |
396 | break; |
397 | |
398 | } |
399 | |
b01b21d0 |
400 | echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\" $onload>\n\n"; |
a07cd1a4 |
401 | /** Here is the header and wrapping table **/ |
f3e14140 |
402 | $shortBoxName = imap_utf7_decode_local( |
403 | readShortMailboxName($mailbox, $delimiter)); |
3b7d68e6 |
404 | if ( $shortBoxName == 'INBOX' ) { |
7da23762 |
405 | $shortBoxName = _("INBOX"); |
406 | } |
b01b21d0 |
407 | echo "<a name=\"pagetop\"></a>\n" |
408 | . html_tag( 'table', '', '', $color[4], 'border="0" width="100%" cellspacing="0" cellpadding="2"' ) ."\n" |
409 | . html_tag( 'tr', '', '', $color[9] ) ."\n" |
410 | . html_tag( 'td', '', 'left' ) ."\n"; |
5bb2a991 |
411 | if ( $shortBoxName <> '' && strtolower( $shortBoxName ) <> 'none' ) { |
b01b21d0 |
412 | echo ' ' . _("Current Folder") . ": <b>$shortBoxName </b>\n"; |
5bb2a991 |
413 | } else { |
414 | echo ' '; |
415 | } |
b01b21d0 |
416 | echo " </td>\n" |
417 | . html_tag( 'td', '', 'right' ) ."<b>\n"; |
80e86e94 |
418 | displayInternalLink ('src/signout.php', _("Sign Out"), $frame_top); |
b01b21d0 |
419 | echo "</b></td>\n" |
420 | . " </tr>\n" |
421 | . html_tag( 'tr', '', '', $color[4] ) ."\n" |
422 | . html_tag( 'td', '', 'left' ) ."\n"; |
a07cd1a4 |
423 | $urlMailbox = urlencode($mailbox); |
9c3e6cd4 |
424 | if ($compose_new_win == '1') { |
d7f8e6e6 |
425 | echo "<a href=\"javascript:void(0)\" onclick=\"comp_in_new(true,'')\">". _("Compose"). '</a>'; |
9c3e6cd4 |
426 | } |
427 | else { |
428 | displayInternalLink ("src/compose.php?mailbox=$urlMailbox", _("Compose"), 'right'); |
429 | } |
a07cd1a4 |
430 | echo " \n"; |
431 | displayInternalLink ("src/addressbook.php", _("Addresses"), 'right'); |
432 | echo " \n"; |
433 | displayInternalLink ("src/folders.php", _("Folders"), 'right'); |
434 | echo " \n"; |
435 | displayInternalLink ("src/options.php", _("Options"), 'right'); |
436 | echo " \n"; |
437 | displayInternalLink ("src/search.php?mailbox=$urlMailbox", _("Search"), 'right'); |
438 | echo " \n"; |
439 | displayInternalLink ("src/help.php", _("Help"), 'right'); |
440 | echo " \n"; |
441 | |
442 | do_hook("menuline"); |
443 | |
b01b21d0 |
444 | echo " </td>\n" |
445 | . html_tag( 'td', '', 'right' ) ."\n"; |
a07cd1a4 |
446 | echo ($hide_sm_attributions ? ' ' : |
b01b21d0 |
447 | '<a href="http://www.squirrelmail.org/" target="_blank">SquirrelMail</a>'); |
448 | echo "</td>\n". |
449 | " </tr>\n". |
450 | "</table>\n\n"; |
a07cd1a4 |
451 | } |
2ba13803 |
452 | |
9c3e6cd4 |
453 | /* blatently copied/truncated/modified from the above function */ |
454 | function compose_Header($color, $mailbox) { |
455 | |
456 | global $delimiter, $hide_sm_attributions, $base_uri, $PHP_SELF, $frame_top, $compose_new_win; |
457 | |
9c3e6cd4 |
458 | |
459 | $module = substr( $PHP_SELF, ( strlen( $PHP_SELF ) - strlen( $base_uri ) ) * -1 ); |
460 | if (!isset($frame_top)) { |
461 | $frame_top = '_top'; |
462 | } |
463 | |
464 | /* |
465 | Locate the first displayable form element |
466 | */ |
467 | switch ( $module ) { |
468 | case 'src/search.php': |
469 | $pos = getPref($data_dir, $username, 'search_pos', 0 ) - 1; |
470 | $onload = "onLoad=\"document.forms[$pos].elements[2].focus();\""; |
aaf16822 |
471 | displayHtmlHeader (_("Compose")); |
9c3e6cd4 |
472 | break; |
473 | default: |
aaf16822 |
474 | $js = '<script language="JavaScript" type="text/javascript">' . |
9c3e6cd4 |
475 | "\n<!--\n" . |
476 | "function checkForm() {\n". |
477 | "var f = document.forms.length;\n". |
478 | "var i = 0;\n". |
479 | "var pos = -1;\n". |
480 | "while( pos == -1 && i < f ) {\n". |
481 | "var e = document.forms[i].elements.length;\n". |
482 | "var j = 0;\n". |
483 | "while( pos == -1 && j < e ) {\n". |
484 | "if ( document.forms[i].elements[j].type == 'text' ) {\n". |
485 | "pos = j;\n". |
486 | "}\n". |
487 | "j++;\n". |
488 | "}\n". |
489 | "i++;\n". |
490 | "}\n". |
491 | "if( pos >= 0 ) {\n". |
492 | "document.forms[i-1].elements[pos].focus();\n". |
493 | "}\n". |
494 | "}\n"; |
aaf16822 |
495 | $js .= "// -->\n". |
de19cd73 |
496 | "</script>\n"; |
9c3e6cd4 |
497 | $onload = "onLoad=\"checkForm();\""; |
aaf16822 |
498 | displayHtmlHeader (_("Compose"), $js); |
9c3e6cd4 |
499 | break; |
500 | |
501 | } |
502 | |
b01b21d0 |
503 | echo "<body text=\"$color[8]\" bgcolor=\"$color[4]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\" $onload>\n\n"; |
9c3e6cd4 |
504 | } |
43fdb2a4 |
505 | ?> |