SF.net SVN: postfixadmin:[407] trunk/functions.inc.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <chr...@us...> - 2008-07-18 23:21:51
|
Revision: 407
http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=407&view=rev
Author: christian_boltz
Date: 2008-07-18 23:21:59 +0000 (Fri, 18 Jul 2008)
Log Message:
-----------
functions.php
- removed (now) unused function table_by_pos
I'm quite sure we won't need it again, basically it answered questions
like "what's the 3rd table in $CONF['database_tables']?"
Modified Paths:
--------------
trunk/functions.inc.php
Modified: trunk/functions.inc.php
===================================================================
--- trunk/functions.inc.php 2008-07-18 23:15:52 UTC (rev 406)
+++ trunk/functions.inc.php 2008-07-18 23:21:59 UTC (rev 407)
@@ -1691,24 +1691,6 @@
-//
-// table_by_pos
-// Action: Return table name for given position
-// Call: table_by_pos (int pos)
-//
-function table_by_pos ($pos)
-{
- global $CONF;
- $x=0;
- foreach($CONF['database_tables'] as $i=>$v)
- {
- if($pos==$x++) return table_by_key ($i);
- }
- return false;
-}
-
-
-
/*
Called after a mailbox has been created in the DBMS.
Returns: boolean.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|