diff --git a/workflow/engine/classes/model/om/BaseWebEntry.php b/workflow/engine/classes/model/om/BaseWebEntry.php index a1c78ed9f..77821569e 100644 --- a/workflow/engine/classes/model/om/BaseWebEntry.php +++ b/workflow/engine/classes/model/om/BaseWebEntry.php @@ -121,7 +121,7 @@ abstract class BaseWebEntry extends BaseObject implements Persistent * The value for the we_hide_information_bar field. * @var string */ - protected $we_hide_information_bar = '0'; + protected $we_hide_information_bar = '1'; /** * The value for the we_callback field. @@ -816,7 +816,7 @@ abstract class BaseWebEntry extends BaseObject implements Persistent $v = (string) $v; } - if ($this->we_hide_information_bar !== $v || $v === '0') { + if ($this->we_hide_information_bar !== $v || $v === '1') { $this->we_hide_information_bar = $v; $this->modifiedColumns[] = WebEntryPeer::WE_HIDE_INFORMATION_BAR; } diff --git a/workflow/engine/config/schema.xml b/workflow/engine/config/schema.xml index 10dc0c51f..837be11b5 100644 --- a/workflow/engine/config/schema.xml +++ b/workflow/engine/config/schema.xml @@ -3346,7 +3346,7 @@ - + diff --git a/workflow/engine/content/translations/english/processmaker.en.po b/workflow/engine/content/translations/english/processmaker.en.po index 92858bd7d..017bcbec5 100644 --- a/workflow/engine/content/translations/english/processmaker.en.po +++ b/workflow/engine/content/translations/english/processmaker.en.po @@ -17836,14 +17836,14 @@ msgstr "Sending a test mail to: {0}" # TRANSLATION # LABEL/ID_EVENT_NOT_IS_START_EVENT #: LABEL/ID_EVENT_NOT_IS_START_EVENT -msgid "The event with {0}: {1} not is \"Start Event\"." -msgstr "The event with {0}: {1} not is \"Start Event\"." +msgid "The event with {0}: {1} is not a \"Start Event\"." +msgstr "The event with {0}: {1} is not a \"Start Event\"." # TRANSLATION # LABEL/ID_WEB_ENTRY_EVENT_DOES_NOT_IS_REGISTERED #: LABEL/ID_WEB_ENTRY_EVENT_DOES_NOT_IS_REGISTERED -msgid "The event with {0}: {1} does not is registered." -msgstr "The event with {0}: {1} does not is registered." +msgid "The event with {0}: {1} is not registered." +msgstr "The event with {0}: {1} is not registered." # TRANSLATION # LABEL/ID_WEB_ENTRY_EVENT_TITLE_ALREADY_EXISTS diff --git a/workflow/engine/data/mysql/insert.sql b/workflow/engine/data/mysql/insert.sql index f7f6545cf..017437ec8 100644 --- a/workflow/engine/data/mysql/insert.sql +++ b/workflow/engine/data/mysql/insert.sql @@ -4480,8 +4480,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ( 'LABEL','ID_EMAIL_SERVER_TEST_CONNECTION_SENDING_EMAIL','en','Sending a test mail to: {0}','2014-12-24') ; INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE ) VALUES -( 'LABEL','ID_EVENT_NOT_IS_START_EVENT','en','The event with {0}: {1} not is "Start Event".','2015-01-13') , -( 'LABEL','ID_WEB_ENTRY_EVENT_DOES_NOT_IS_REGISTERED','en','The event with {0}: {1} does not is registered.','2015-01-16') , +( 'LABEL','ID_EVENT_NOT_IS_START_EVENT','en','The event with {0}: {1} is not a "Start Event".','2015-01-13') , +( 'LABEL','ID_WEB_ENTRY_EVENT_DOES_NOT_IS_REGISTERED','en','The event with {0}: {1} is not registered.','2015-01-16') , ( 'LABEL','ID_WEB_ENTRY_EVENT_TITLE_ALREADY_EXISTS','en','The WebEntry-Event title with {0}: "{1}" already exists.','2015-01-16') , ( 'LABEL','ID_CASE_STOPPED_TRIGGER','en','The case has not stopped due to its trigger.','2015-01-29') , ( 'LABEL','ID_TRANSLATION_NOT_WRITEABLE','en','The translation file is not writable.
Please give write permission to file:','2015-01-31') , diff --git a/workflow/engine/data/mysql/schema.sql b/workflow/engine/data/mysql/schema.sql index c872e884b..dad4d9cbe 100644 --- a/workflow/engine/data/mysql/schema.sql +++ b/workflow/engine/data/mysql/schema.sql @@ -1664,7 +1664,7 @@ CREATE TABLE `WEB_ENTRY` `WE_TYPE` VARCHAR(8) default 'SINGLE' NOT NULL, `WE_CUSTOM_TITLE` MEDIUMTEXT, `WE_AUTHENTICATION` VARCHAR(14) default 'ANONYMOUS' NOT NULL, - `WE_HIDE_INFORMATION_BAR` CHAR(1) default '0', + `WE_HIDE_INFORMATION_BAR` CHAR(1) default '1', `WE_CALLBACK` VARCHAR(13) default 'PROCESSMAKER' NOT NULL, `WE_CALLBACK_URL` MEDIUMTEXT, `WE_LINK_GENERATION` VARCHAR(8) default 'DEFAULT' NOT NULL, diff --git a/workflow/engine/methods/webentry/access.php b/workflow/engine/methods/webentry/access.php index b25770a58..8cb395b86 100644 --- a/workflow/engine/methods/webentry/access.php +++ b/workflow/engine/methods/webentry/access.php @@ -23,6 +23,8 @@ $webEntryModel = \WebEntryPeer::retrieveByPK($weUid); <?php echo htmlentities($webEntryModel->getWeCustomTitle()); ?> + + getExtJsStylesheets(SYS_SKIN); @@ -91,7 +93,7 @@ $webEntryModel = \WebEntryPeer::retrieveByPK($weUid); - +