WordPress Booking Calendar Contact...

- AV AC AU C I A
发布: 2025-04-13
修订: 2025-04-13

<ul><li>/dex_bccf.php</li></ul><pre class="">function dex_bccf_caculate_price($startday, $enddate, $calendar, $default_price) { ... //$calendar is not sanitized in sql query $codes = $wpdb-&gt;get_results( 'SELECT * FROM '.$wpdb-&gt;prefix.DEX_BCCF_SEASON_PRICES_TABLE_NAME_NO_PREFIX.' WHERE `cal_id`='.$calendar); $mode = (dex_bccf_get_option('calendar_mode',DEX_BCCF_DEFAULT_CALENDAR_MODE) == 'false'); while ( (($enddate&gt;$startday) &amp;&amp; !$mode) || (($enddate&gt;=$startday) &amp;&amp; $mode) ) { $daily_price = $default_price; $sprice = array(); foreach ($codes as $value) { $sfrom = strtotime($value-&gt;date_from); $sto = strtotime($value-&gt;date_to); if ($startday &gt;= $sfrom &amp;&amp; $startday &lt;= $sto) { $sprice = explode (';', $value-&gt;price); $daily_price = $sprice[0]; } } $season_prices[] = $sprice; $price += $daily_price; $startday = strtotime (date("Y-m-d", $startday)." +1 day"); //60*60*24; $days++; } ... }...

0%
暂无可用Exp或PoC
当前有0条受影响产品信息