[LinksOS CVS Commit]website/include func_general.php,1.1.1.1,1.2
Status: Inactive
Brought to you by:
terencevs
|
From: <ke...@us...> - 2002-12-27 21:20:59
|
Update of /cvsroot/linksos/website/include
In directory sc8-pr-cvs1:/tmp/cvs-serv8833/include
Modified Files:
func_general.php
Log Message:
Added person link function.
Index: func_general.php
===================================================================
RCS file: /cvsroot/linksos/website/include/func_general.php,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** func_general.php 22 Dec 2002 03:15:36 -0000 1.1.1.1
--- func_general.php 27 Dec 2002 21:20:54 -0000 1.2
***************
*** 4,6 ****
--- 4,10 ----
. $text . '</a>';
}
+
+ function perslink($uid, $txt) {
+ return '<a href="' . $PHP_SELF . '?module=person_summary&uid=' . $uid . '">' . $txt . '</a>';
+ }
?>
|