summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2013-11-04 01:24:22 +0000
committerAnika Henke <anika@selfthinker.org>2013-11-04 01:24:22 +0000
commitb1f535eb5e822dc2e16f687bb0a69c8643224d87 (patch)
tree9323227c545b609c8f36a0cc1e32f738bb2767fe
parent0045ec49e6995048e7a0057ebd33d4373bf56239 (diff)
downloadrpg-b1f535eb5e822dc2e16f687bb0a69c8643224d87.tar.gz
rpg-b1f535eb5e822dc2e16f687bb0a69c8643224d87.tar.bz2
removed deprecated html_attbuild()
-rw-r--r--inc/html.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/inc/html.php b/inc/html.php
index bbe29e371..7f473cdb6 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -28,20 +28,6 @@ function html_wikilink($id,$name=null,$search=''){
}
/**
- * Helps building long attribute lists
- *
- * @deprecated Use buildAttributes instead
- * @author Andreas Gohr <andi@splitbrain.org>
- */
-function html_attbuild($attributes){
- $ret = '';
- foreach ( $attributes as $key => $value ) {
- $ret .= $key.'="'.formText($value).'" ';
- }
- return trim($ret);
-}
-
-/**
* The loginform
*
* @author Andreas Gohr <andi@splitbrain.org>