ispman/ispman-web/cgi-bin/tmpl/vhosts add.tmpl, 1.20, 1.21
Joerg Delker <[email protected]> Sun, 21 Dec 2008 13:44:16 +0000
| Newsgroups | gmane.comp.isp.ispman.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/ispman/ispman/ispman-web/cgi-bin/tmpl/vhosts
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22232/ispman-web/cgi-bin/tmpl/vhosts
Modified Files:
add.tmpl
Log Message:
added patch [ 2455981 ] vhost actions
Index: add.tmpl
===================================================================
RCS file: /cvsroot/ispman/ispman/ispman-web/cgi-bin/tmpl/vhosts/add.tmpl,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- add.tmpl 9 Jun 2007 15:44:51 -0000 1.20
+++ add.tmpl 21 Dec 2008 13:44:14 -0000 1.21
@@ -202,7 +202,21 @@
</select>
</td>
</tr>
-
+<tr>
+ <td>Vhost actions<br>(Optional)</td>
+ <td>
+ <select name="vhostActions" MULTIPLE>
+ <perl>
+ my @actions=split '\|',$ispman->getConf("vhostActions");
+ my $out="";
+ for (@actions) {
+ $out .= qq|<option value="$_">$_</option>| unless $_ eq "none";
+ }
+ $out
+ </perl>
+ </select>
+ </td>
+</tr>
<tr>
<td valign=top>Extra configurations<br>(Optional)</td>
<td colspan=2>
------------------------------------------------------------------------------