-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from mambax7/master
1.08 Alpha 3
- Loading branch information
Showing
188 changed files
with
4,912 additions
and
1,794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,12 +21,13 @@ | |
* @author Fernando Santos (topet05) <[email protected]> | ||
*/ | ||
|
||
use Xmf\Module\Admin; | ||
use Xmf\Request; | ||
use \XoopsModules\Publisher\Common\ModuleFeedback; | ||
|
||
require __DIR__ . '/admin_header.php'; | ||
|
||
$adminObject = \Xmf\Module\Admin::getInstance(); | ||
$adminObject = Admin::getInstance(); | ||
|
||
$feedback = new ModuleFeedback(); | ||
|
||
|
@@ -45,7 +46,7 @@ | |
$feedback->name = $GLOBALS['xoopsUser']->getVar('name'); | ||
$feedback->email = $GLOBALS['xoopsUser']->getVar('email'); | ||
$feedback->site = XOOPS_URL; | ||
$form = $feedback->getFormFeedback(); | ||
$form = $feedback->getFormFeedback(); | ||
echo $form->display(); | ||
break; | ||
case 'send': | ||
|
@@ -58,7 +59,7 @@ | |
|
||
$your_name = Request::getString('your_name', ''); | ||
$your_site = Request::getString('your_site', ''); | ||
$yourMail = Request::getString('your_mail', ''); | ||
$yourMail = Request::getString('your_mail', ''); | ||
$fb_type = Request::getString('fb_type', ''); | ||
$fb_content = Request::getText('fb_content', ''); | ||
$fb_content = str_replace(["\r\n", "\n", "\r"], '<br>', $fb_content); //clean line break from dhtmltextarea | ||
|
Oops, something went wrong.