source: extensions/UserAdvManager/branches/2.6/stuffs_module/config.inc.php @ 27210

Last change on this file since 27210 was 27210, checked in by Eric, 10 years ago

Merge r27209 from trunk to branch 2.6:
Fix bug with UAM module in PWG_Stuff (thx to Gabeek for reporting)
Obsolete translation keys cleanup
Update el_GR, thanks to : bas_alba
Update pt_BR, thanks to : flaviove
Update lv_LV, thanks to : agrisans
Update it_IT, thanks to : Ericnet
Update de_DE, thanks to : Joergen
Update es_ES, thanks to : jpr928

  • Property svn:eol-style set to LF
File size: 523 bytes
Line 
1<?php
2
3if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
4
5if (!isset($datas)) $datas = '';
6
7// set configuration
8// -----------------
9if (isset($_POST['submit'])) {
10  $datas = stripslashes($_POST['personal_content']);
11}
12
13// Template init
14// -------------
15$template->assign('cat_style', array());
16$template->assign(array('PERSONAL_CONTENT' => $datas));
17
18$template->set_filenames(array('module_options' => dirname(__FILE__) . '/config.tpl'));
19$template->assign_var_from_handle('MODULE_OPTIONS', 'module_options');
20
21?>
Note: See TracBrowser for help on using the repository browser.