Changeset 1791
- Timestamp:
- Feb 8, 2007, 10:20:40 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/ws_checker.php
r1781 r1791 136 136 $add_end = ( is_numeric($_POST['add_end']) ) ? $_POST['add_end']:0; 137 137 $add_request = htmlspecialchars( $_POST['add_request'], ENT_QUOTES); 138 $add_high = 'true'; // ( $_POST['add_high'] == 'true' ) ? 'true':'false';139 $add_normal = 'true'; // ( $_POST['add_normal'] == 'true' ) ? 'true':'false';140 138 $add_limit = ( is_numeric($_POST['add_limit']) ) ? $_POST['add_limit']:1; 141 139 $add_comment = htmlspecialchars( $_POST['add_comment'], ENT_QUOTES); … … 145 143 $query = ' 146 144 INSERT INTO '.WEB_SERVICES_ACCESS_TABLE.' 147 ( `name` , `access` , `start` , `end` , `request` , 148 `high` , `normal` , `limit` , `comment` ) 145 ( `name` , `access` , `start` , `end` , `request` , `limit` , `comment` ) 149 146 VALUES (' . " 150 147 '$add_partner', '$add_target', 151 148 NOW(), 152 149 ADDDATE( NOW(), INTERVAL $add_end DAY), 153 '$add_request', '$add_ high', '$add_normal', '$add_limit', '$add_comment' );";150 '$add_request', '$add_limit', '$add_comment' );"; 154 151 155 152 pwg_query($query); … … 224 221 $template->assign_vars( 225 222 array( 226 'DEFLT_HIGH_YES' => '',227 'DEFLT_HIGH_NO' => 'checked',228 'DEFLT_NORMAL_YES' => '',229 'DEFLT_NORMAL_NO' => 'checked',230 223 'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=web_service', 231 224 ) -
trunk/install/phpwebgallery_structure.sql
r1762 r1791 432 432 `end` datetime default NULL, 433 433 `request` varchar(255) default NULL, 434 `high` enum('true','false') NOT NULL default 'true',435 `normal` enum('true','false') NOT NULL default 'true',436 434 `limit` smallint(5) unsigned default NULL, 437 435 `comment` varchar(255) default NULL, -
trunk/template/yoga/theme/p0w0/theme.css
-
Property
svn:eol-style
set to
native
-
Property
svn:keywords
set to
Author Date Id Revision
r1783 r1791 1 /* $Id : theme.css 1677 2006-12-21 21:38:20Z rub$ */1 /* $Id$ */ 2 2 3 3 /** … … 239 239 } 240 240 input.submit[type="reset"], 241 input.submit 242 background: url( images/button-bg.png);243 border: 3px double #369;244 border-left-color: #cde;245 border-top-color: #cde;241 input.submit { 242 background-image: url(images/button-bg.png); 243 height:28px; 244 width: 8em; 245 border: 0px; 246 246 font-weight: bold; 247 247 color: #fff; 248 padding: 0.25em; 248 border-bottom-width: 1px; 249 border-right-width: 1px; 250 border-style: outset; 251 border-color: #369; 252 padding: auto 0.25em; 249 253 } 250 254 input.submit[type="reset"]:active, … … 256 260 } 257 261 #addComment input.submit { 258 padding: 4px 40px; 259 } 262 width: 12em; 263 padding: auto 40px; 264 } -
Property
svn:eol-style
set to
Note: See TracChangeset
for help on using the changeset viewer.