Changeset 17423
- Timestamp:
- Aug 6, 2012, 10:55:13 AM (12 years ago)
- Location:
- extensions/gvideo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/gvideo/admin/template/add.tpl
r17383 r17423 1 1 {combine_css path=$GVIDEO_PATH|@cat:"admin/template/style.css"} 2 {include file='include/colorbox.inc.tpl'} 3 {include file='include/add_album.inc.tpl'} 2 4 3 5 {footer_script}{literal} … … 26 28 <label> 27 29 <span class="property">{'Album'|@translate}</span> 28 <select name="category" size="1">30 <select style="width:400px" name="category" id="albumSelect" size="1"> 29 31 {html_options options=$category_parent_options selected=$POST.category} 30 32 </select> 31 33 </label> 34 {'... or '|@translate}<a href="#" class="addAlbumOpen" title="{'create a new album'|@translate}">{'create a new album'|@translate}</a> 32 35 </li> 33 36 <li> 34 37 <label> 35 38 <span class="property">{'Video URL'|@translate}</span> 36 <input type="text" name="url" value="{$POST.url}" s ize="70">39 <input type="text" name="url" value="{$POST.url}" style="width:400px"> 37 40 </label> 38 41 </li> -
extensions/gvideo/maintain.inc.php
r17383 r17423 4 4 global $prefixeTable; 5 5 6 define('gvideo_path', PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) );6 define('gvideo_path', PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/'); 7 7 define('gvideo_table', $prefixeTable.'image_video'); 8 8 … … 46 46 `width` smallint(9) DEFAULT NULL, 47 47 `height` smallint(9) DEFAULT NULL, 48 `autoplay` tinyint(1) DEFAULT NULL ,48 `autoplay` tinyint(1) DEFAULT NULL 49 49 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 50 50 ;';
Note: See TracChangeset
for help on using the changeset viewer.