0? if (($_POST['limited'] == "N") && ((isset($_POST['limit'])) && ($_POST['limit'] > 0)) || (!isset($_POST['limit']))) { // Set it to unlimited $_POST['limit'] = 0; } // END - if // Register the new URL $insertId = SURFBAR_MEMBER_ADD_URL($_POST['url'], $_POST['limit']); // By default something went wrong $msg = MEMBER_SURFBAR_URL_NOT_ADDED; // Was this fine? if ($insertId > 0) { // URL added and waiting for unlock $msg = MEMBER_SURFBAR_URL_ADDED; } // END - if // Load message template LOAD_TEMPLATE("admin_settings_saved", false, $msg); } else { // Prepare some content $content = array( 'reward' => TRANSLATE_COMMA(SURFBAR_DETERMINE_REWARD(true)), 'costs' => TRANSLATE_COMMA(SURFBAR_DETERMINE_COSTS(true)), 'max_order' => getConfig('surfbar_max_order'), 'curr_order' => SURFBAR_GET_TOTAL_USER_URLS() ); // Load surfbar order form LOAD_TEMPLATE(sprintf("member_surfbar_book_%s", strtolower(getConfig('surfbar_pay_model'))), false, $content); } // ?>