mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
- added category selection
This commit is contained in:
parent
b94bed96e7
commit
92c69f5d51
|
@ -129,16 +129,20 @@ $docAccess = $folder->getApproversList();
|
||||||
<td><?php printMLText("keywords");?>:</td>
|
<td><?php printMLText("keywords");?>:</td>
|
||||||
<td>
|
<td>
|
||||||
<textarea name="keywords" rows="1" cols="80"></textarea><br>
|
<textarea name="keywords" rows="1" cols="80"></textarea><br>
|
||||||
<a href="javascript:chooseKeywords();"><?php printMLText("use_default_keywords");?></a>
|
<a href="javascript:chooseKeywords('form1.keywords');"><?php printMLText("use_default_keywords");?></a>
|
||||||
<script language="JavaScript">
|
<script language="JavaScript">
|
||||||
var openDlg;
|
var openDlg;
|
||||||
|
|
||||||
function chooseKeywords() {
|
function chooseKeywords(target) {
|
||||||
openDlg = open("out.KeywordChooser.php", "openDlg", "width=500,height=400,scrollbars=yes,resizable=yes");
|
openDlg = open("out.KeywordChooser.php?target="+target, "openDlg", "width=500,height=400,scrollbars=yes,resizable=yes");
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><?php printMLText("categories")?>:</td>
|
||||||
|
<td><?php UI::printCategoryChooser("form1");?></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php printMLText("expires");?>:</td>
|
<td><?php printMLText("expires");?>:</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user