~ubuntu-branches/ubuntu/maverick/ilohamail/maverick

« back to all changes in this revision

Viewing changes to IlohaMail/conf/login_blurb.inc

  • Committer: Bazaar Package Importer
  • Author(s): Joerg Jaspert
  • Date: 2004-02-04 13:44:37 UTC
  • Revision ID: james.westby@ubuntu.com-20040204134437-kz8j3ui2qa7oq8z2
Tags: upstream-0.8.12
ImportĀ upstreamĀ versionĀ 0.8.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/********************************************************
 
3
        conf/defaults.inc
 
4
                
 
5
        PURPOSE:
 
6
                Provide central location for specifying text to be display below login form
 
7
 
 
8
********************************************************/
 
9
 
 
10
?>
 
11
<p>Powered by <a href="http://ilohamail.org">IlohaMail</a>
 
12
<?php
 
13
if (($v_stat=="Dev") || ($v_stat=="Devel")){
 
14
?>
 
15
        <p>This version is still under development.
 
16
        <br>Parts of it may break or change suddenly without warning.
 
17
        <p>File bug reports <a href="http://ilohamail.org/forum/view.php?topic_id=5">here</a> 
 
18
        or to the <a href="http://ilohamail.org/main.php?page=ML">testers mailing list</a>.
 
19
<?php
 
20
}else{
 
21
        /*
 
22
        ?>
 
23
        Visit <a href="http://ilohamail.org">IlohaMail.org</a> for more information on this program.
 
24
        <?php
 
25
        */
 
26
}
 
27
 
 
28
?>
 
29