Skip to content

Commit

Permalink
updated to 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbaseman committed Aug 20, 2016
1 parent cd3b932 commit 7236934
Show file tree
Hide file tree
Showing 61 changed files with 93 additions and 82 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,18 @@ MODULE VERSION HISTORY
======================

------------------------------------------------------------------------------------------------------------------------
*** 1.2.3 (Martin Hecht: 20-Aug-2016) ***
fix query for position in upgrade script, thanks to norhei for reporting
fix drag and drop in ajax helper, thanks to florian for reporting
honor redirection_timer in ajax notifications, thanks to florian for this hint

*** 1.2.2 (Martin Hecht: 18-Aug-2016) ***
two typo fixes in view_submissions, thanks to norhei for reporting

*** 1.2.1 (Martin Hecht: 02-Aug-2016) ***
fix the redirection on the help page
repair the build system which has inserted text by mistake
fix curly brace in private.php
fix curly brace in private.php, thanks to florian for reporting

*** 1.2.0 (Martin Hecht: 28-Jul-2016) ***
realign the code (break long lines and properly ident)
Expand Down
2 changes: 1 addition & 1 deletion add.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion add_field.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion ajax/ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion ajax/ajax_dragdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if(jQuery().sortable){
jQuery(function() {
jQuery('.dragdrop_item').addClass('dragdrop_handle');
jQuery(".dragdrop_form .move_position a").remove();
var sDataString = jQuery(this).sortable("serialize") + '&action=updatePosition';
//var sDataString = jQuery(this).sortable("serialize") + '&action=updatePosition';

jQuery(".dragdrop_form tbody").sortable({
appendTo: 'body',
Expand Down
2 changes: 1 addition & 1 deletion ajax/ajax_dragdrop.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion ajax/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion ajax/pry_submission.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
3 changes: 2 additions & 1 deletion backend_body.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ var MODULE_URL = WB_URL + '/modules/mpform';
var ICONS = MODULE_URL + '/images';
var AJAX_PLUGINS = MODULE_URL + '/ajax'; // this var could change in the future
var LANGUAGE = LANGUAGE ? LANGUAGE : 'EN'; // set var LANGUAGE to EN if LANGUAGE not set before
var REDIRECT_TIMER = REDIRECT_TIMER ? REDIRECT_TIMER : 1500; // ms
$.insert(AJAX_PLUGINS +"/localization.js"); // load external language file

// @function: getUrlVars (retrieve GET Parameters)
Expand Down Expand Up @@ -91,7 +92,7 @@ $(function() {
{
// jNotify Settings
autoHide : true, // added in v2.0
TimeShown : 1200, // ms
TimeShown : REDIRECT_TIMER,
HorizontalPosition : 'center',
VerticalPosition : 'top',
ColorOverlay : '#FFF'
Expand Down
2 changes: 1 addition & 1 deletion constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion copy_field.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion delete_field.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion delete_submission.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/DE/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/DE/mpform/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/DE/mpform/referenz-der-optionen/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/EN/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/EN/mpform/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/EN/mpform/settings-of-mpform/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/images/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion docs/style/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion evalform.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion export.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion help.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion htt/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion images/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion import.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
4 changes: 2 additions & 2 deletions info.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand All @@ -21,7 +21,7 @@
$module_directory = 'mpform';
$module_name = 'mpForm';
$module_function = 'page';
$module_version = '1.2.1';
$module_version = '1.2.3';
$module_platform = '2.8.x';
$module_status = 'stable';
$module_author = 'Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others';
Expand Down
2 changes: 1 addition & 1 deletion install.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion jscalendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/DE.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/EN.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/FR.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/IT.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/NL.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/NO.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
2 changes: 1 addition & 1 deletion languages/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @category page
* @module mpform
* @version 1.2.1
* @version 1.2.3
* @authors Frank Heyne, NorHei(heimsath.org), Christian M. Stefan (Stefek), Martin Hecht (mrbaseman) and others
* @copyright (c) 2009 - 2016, Website Baker Org. e.V.
* @url http://forum.websitebaker.org/index.php/topic,28496.0.html
Expand Down
Loading

0 comments on commit 7236934

Please sign in to comment.