diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-01-06 09:46:24 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-01-06 09:46:24 +0000 |
| commit | 7be1c7aa6f89f524b5afc78d6fd2e2b850c73960 (patch) | |
| tree | 224abf44d84ece901b5fe48b518bd267f92a3b00 | |
| parent | a706f276e8f9c8a9950c6a82bf7e21740201a171 (diff) | |
| download | rss-7be1c7aa6f89f524b5afc78d6fd2e2b850c73960.tar.gz rss-7be1c7aa6f89f524b5afc78d6fd2e2b850c73960.tar.bz2 rss-7be1c7aa6f89f524b5afc78d6fd2e2b850c73960.zip | |
rename some methods in BitDbBase to meet bitweaver standards. all changes backwards compatible with deprecated function call message.
| -rw-r--r-- | rss_lib.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rss_lib.php b/rss_lib.php index f2d9f27..8ad6ae2 100644 --- a/rss_lib.php +++ b/rss_lib.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_rss/rss_lib.php,v 1.10 2006/08/28 07:51:03 jht001 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_rss/rss_lib.php,v 1.11 2007/01/06 09:46:24 squareing Exp $ * @package rss * * Copyright (c) 2004 bitweaver.org @@ -9,7 +9,7 @@ * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details * - * $Id: rss_lib.php,v 1.10 2006/08/28 07:51:03 jht001 Exp $ + * $Id: rss_lib.php,v 1.11 2007/01/06 09:46:24 squareing Exp $ */ /** @@ -31,7 +31,7 @@ class RSSLib extends BitBase { $bindvars=array(); } - $query = "select * from `".BIT_DB_PREFIX."rss_modules` $mid order by ".$this->mDb->convert_sortmode($sort_mode); + $query = "select * from `".BIT_DB_PREFIX."rss_modules` $mid order by ".$this->mDb->convertSortmode($sort_mode); $query_cant = "select count(*) from `".BIT_DB_PREFIX."rss_modules` $mid"; $result = $this->mDb->query($query,$bindvars,$max_records,$offset); $cant = $this->mDb->getOne($query_cant,$bindvars); |
