Changeset 1557
- Timestamp:
- 02/18/08 21:05:05 (5 months ago)
- Files:
-
- devel/mod/elggadmin/lib/configdef.php (modified) (2 diffs)
- devel/mod/elggadmin/lib/elggadmin.inc.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/mod/elggadmin/lib/configdef.php
r1539 r1557 41 41 42 42 $DEFCFG->config['prefix']->name = __gettext("Database table prefix"); 43 $DEFCFG->config['prefix']->description = __gettext("All database tables will start with this; we recommend 'elgg '");43 $DEFCFG->config['prefix']->description = __gettext("All database tables will start with this; we recommend 'elgg_'"); 44 44 $DEFCFG->config['prefix']->important = true; 45 45 … … 101 101 102 102 $DEFCFG->config['debug']->name = __gettext("Debug"); 103 $DEFCFG->config['debug']->description = __gettext("Set this to 2047to get adodb error handling");103 $DEFCFG->config['debug']->description = __gettext("Set this to <em>Show all errors</em> to get adodb error handling"); 104 104 $DEFCFG->config['debug']->type = 'debug'; 105 105 devel/mod/elggadmin/lib/elggadmin.inc.php
r1539 r1557 388 388 unset($attrs['value']); 389 389 $_opts = array( 390 ' Off' => '0',391 ' Warning' => '7',392 ' Enabled' => '2047',390 'Hide all errors' => '0', 391 'Only warnings' => '7', 392 'Show all errors' => '2047', 393 393 ); 394 394
