Changeset 15790
- Timestamp:
- 12/20/11 01:57:26 (5 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
inc/utils.inc.php (modified) (1 diff)
-
plugins/jquery/jquery.dynDateTime.js (modified) (1 diff)
-
studio/templates/base/scripts/BxBaseStudioPermissionsActions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/inc/utils.inc.php
r15759 r15790 220 220 return $iRet > 0 ? $iRet : false; 221 221 case BX_DATA_DATETIME_TS: 222 if (!preg_match('#(\d+)\-(\d+)\-(\d+)[\sT]{1}(\d+):(\d+):(\d+)#', $ s, $m))222 if (!preg_match('#(\d+)\-(\d+)\-(\d+)[\sT]{1}(\d+):(\d+):(\d+)#', $mixedData, $m)) 223 223 return bx_process_input ($mixedData, BX_DATA_DATE_TS, $mixedParams, $isCheckMagicQuotes); 224 224 $iDay = $m[3]; -
trunk/plugins/jquery/jquery.dynDateTime.js
r15201 r15790 948 948 div.style.position = this.opts.position_css; 949 949 div.style.display = "none"; 950 div.style.zIndex = 10001; 950 951 } 951 952 div.appendChild(table); -
trunk/studio/templates/base/scripts/BxBaseStudioPermissionsActions.php
r15787 r15790 121 121 ), 122 122 'AllowedPeriodStart' => array( 123 'type' => 'date picker',123 'type' => 'datetime', 124 124 'name' => 'AllowedPeriodStart', 125 125 'caption' => _t('_adm_prm_txt_actions_avail_start'), 126 126 'info' => _t('_adm_prm_dsc_actions_avail'), 127 127 'value' => $aOption['allowed_period_start'], 128 'display' => 'filterDate',129 128 'attrs' => array( 130 129 'allow_input' => 'true', 131 130 ), 132 131 'db' => array ( 133 'pass' => ' Date',132 'pass' => 'Xss', 134 133 ), 135 134 ), 136 135 'AllowedPeriodEnd' => array( 137 'type' => 'date picker',136 'type' => 'datetime', 138 137 'name' => 'AllowedPeriodEnd', 139 138 'caption' => _t('_adm_prm_txt_actions_avail_end'), 140 139 'info' => _t('_adm_prm_dsc_actions_avail'), 141 140 'value' => $aOption['allowed_period_end'], 142 'display' => 'filterDate',143 141 'attrs' => array( 144 142 'allow_input' => 'true', 145 143 ), 146 144 'db' => array ( 147 'pass' => ' Date',145 'pass' => 'Xss', 148 146 ), 149 147 ),
Note: See TracChangeset
for help on using the changeset viewer.