|
From: OryNider <ory...@us...> - 2008-03-19 08:20:34
|
Update of /cvsroot/mxbb/mx_blogs/includes In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27016/includes Modified Files: weblogs_constants.php Log Message: fogot to commit this in head Index: weblogs_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_blogs/includes/weblogs_constants.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** weblogs_constants.php 10 Feb 2008 02:34:51 -0000 1.4 --- weblogs_constants.php 19 Mar 2008 08:17:28 -0000 1.5 *************** *** 1,3 **** --- 1,11 ---- <?php + /** + * + * @package Mx-Publisher Module - mx_blogs + * @version $Id$ + * @copyright (c) 2003 [mhewitson] MXP Development Team + * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 + * + */ if (!isset($mx_table_prefix)) *************** *** 44,46 **** --- 52,65 ---- define('WEBLOG_AUTH_OWNER', 3); + //$mx_user->set_module_default_style('_core'); // For compatibility with core 2.8.x + + // ------------------------------------------------------------------------- + // Extend User Style with module lang and images + // Usage: $mx_user->extend(LANG, IMAGES) + // Switches: + // - LANG: MX_LANG_MAIN (default), MX_LANG_ADMIN, MX_LANG_ALL, MX_LANG_NONE + // - IMAGES: MX_IMAGES (default), MX_IMAGES_NONE + // ------------------------------------------------------------------------- + $mx_user->extend(MX_LANG_NONE, MX_IMAGES); + ?> |