Last change
on this file since 32099 was
27209,
checked in by Eric, 11 years ago
|
Next version is 2.6.1 :
Fix bug with UAM module in PWG_Stuff (thx to Gabeek for reporting)
|
-
Property svn:eol-style set to
LF
|
File size:
523 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
4 | |
---|
5 | if (!isset($datas)) $datas = ''; |
---|
6 | |
---|
7 | // set configuration |
---|
8 | // ----------------- |
---|
9 | if (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.