|
From: OryNider <ory...@us...> - 2007-06-19 22:35:54
|
Update of /cvsroot/mxbb/mx_smartor/admin In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19756/admin Modified Files: admin_album_cfg.php Log Message: This upgrade will add "Enable BBCode" option in Configuration Std and will make smartor "ready" for release. Index: admin_album_cfg.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/admin/admin_album_cfg.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** admin_album_cfg.php 7 Jun 2007 20:13:05 -0000 1.1 --- admin_album_cfg.php 19 Jun 2007 22:34:18 -0000 1.2 *************** *** 267,270 **** --- 267,274 ---- 'SHOW_EXIF_DISABLED' => ($new['show_exif'] == 0) ? 'checked="checked"' : '', + 'BBCODE_ENABLED' => ($new['album_bbcode'] == 1) ? 'checked="checked"' : '', + 'BBCODE_DISABLED' => ($new['album_bbcode'] == 0) ? 'checked="checked"' : '', + + 'S_GUEST' => ALBUM_GUEST, 'S_USER' => ALBUM_USER, *************** *** 335,338 **** --- 339,343 ---- 'L_ENABLE_SEPIA_BW' => $lang['Enable_Sepia_BW'], 'L_SHOW_EXIF' => $lang['Show_EXIF_Info'], + 'L_ENABLE_BBCODE' => $lang['Enable_BBCode'], 'L_ALBUM_DEBUG_MODE' => $lang['Album_debug_mode'], |