[LinksOS CVS Commit]website/include func_general.php,1.2,1.3
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@us...> - 2002-12-28 19:52:40
|
Update of /cvsroot/linksos/website/include
In directory sc8-pr-cvs1:/tmp/cvs-serv12067/include
Modified Files:
func_general.php
Log Message:
doclink
Added doclink() to reference documentation
makelink() had to be used to do docs
a=kennyt
Index: func_general.php
===================================================================
RCS file: /cvsroot/linksos/website/include/func_general.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** func_general.php 27 Dec 2002 21:20:54 -0000 1.2
--- func_general.php 28 Dec 2002 19:52:37 -0000 1.3
***************
*** 8,10 ****
--- 8,14 ----
return '<a href="' . $PHP_SELF . '?module=person_summary&uid=' . $uid . '">' . $txt . '</a>';
}
+
+ function doclink($docid, $txt) {
+ return '<a href="' . $PHP_SELF . '?module=doc&doc_id=' . $docid . '">' . $txt . '</a>';
+ }
?>
|