Changeset 341237
- Timestamp:
- 02/05/2011 05:54:59 PM (15 years ago)
- Location:
- highslide-4-wordpress-reloaded/trunk
- Files:
-
- 8 added
- 4 deleted
- 4 edited
-
functions.hs4wp.php (modified) (12 diffs)
-
highslide-4-wordpress-reloaded.php (modified) (4 diffs)
-
highslide-ie6.css (deleted)
-
highslide-ie6.full.css (added)
-
highslide-ie6.min.css (added)
-
highslide.css (deleted)
-
highslide.full.css (added)
-
highslide.full.js (added)
-
highslide.min.css (added)
-
highslide.min.js (added)
-
hs-custom-min.js (deleted)
-
options.css (deleted)
-
options.full.css (added)
-
options.hs4wp.php (modified) (8 diffs)
-
options.min.css (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
highslide-4-wordpress-reloaded/trunk/functions.hs4wp.php
r333240 r341237 4 4 * function hs4wp_prepare_header 5 5 * Add neccesary includes / CSS to WP Header 6 * @version 1.1 6 * @version 1.11 7 7 * @author Marco 'solariz' Goetze 8 8 * @return bool … … 11 11 GLOBAL $hs4wp_plugin_uri,$hs4wp_ver_hs,$hs4wp_ver_plugin; 12 12 $custom_css = get_option('hs4wp_custom_css'); 13 $hs_css_uri = (strlen($custom_css)>=5)?$custom_css."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin:$hs4wp_plugin_uri."highslide.css?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin; 13 14 // check if min or full versions should be used 15 $CSSJS = array(); 16 if(get_option('hs4wp_useFullJS') == 'on') { 17 // FULL 18 $CSSJS['hs'] = 'highslide.full.css'; 19 $CSSJS['hsmsie'] = 'highslide-ie6.full.css'; 20 $CSSJS['hsjs'] = 'highslide.full.js'; 21 } else { 22 // DEFAULT - minified versions 23 $CSSJS['hs'] = 'highslide.min.css'; 24 $CSSJS['hsmsie'] = 'highslide-ie6.min.css'; 25 $CSSJS['hsjs'] = 'highslide.min.js'; 26 } 27 28 $hs_css_uri = (strlen($custom_css)>=5)?$custom_css."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin:$hs4wp_plugin_uri.$CSSJS['hs']."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin; 14 29 $coralize= get_option('hs4wp_coralize'); 15 30 if($coralize != "" && $coralize != false) { … … 18 33 $OUT = '<link rel="stylesheet" href="'.$hs_css_uri.'" type="text/css" media="screen" />'."\n"; 19 34 $OUT .= "<!--[if lt IE 7]>\n"; 20 $OUT .= '<link rel="stylesheet" type="text/css" href="'.$hs4wp_plugin_uri. 'highslide-ie6.css" />'."\n";35 $OUT .= '<link rel="stylesheet" type="text/css" href="'.$hs4wp_plugin_uri.$CSSJS['hsmsie'].'" />'."\n"; 21 36 $OUT .= "<![endif]-->\n"; 22 37 echo $OUT; … … 26 41 * function hs4wp_prepare_footer 27 42 * Add neccesary JS to footer 28 * @version 1.0 143 * @version 1.02 29 44 * @author Marco 'solariz' Goetze 30 45 * @return bool … … 32 47 function hs4wp_prepare_footer() { 33 48 GLOBAL $hs4wp_plugin_uri,$hs4wp_ver_hs,$hs4wp_ver_plugin,$hs4wp_img_count; 49 // check if min or full versions should be used 50 if(get_option('hs4wp_useFullJS') == 'on') { 51 $hsjs = 'highslide.full.js'; 52 } else { 53 $hsjs = 'highslide.min.js'; 54 } 34 55 $coralize= get_option('hs4wp_coralize'); 35 $hs_script_uri = $hs4wp_plugin_uri. "hs-custom-min.js?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin;56 $hs_script_uri = $hs4wp_plugin_uri.$hsjs."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin; 36 57 $hs_graphics_uri = $hs4wp_plugin_uri."graphics/"; 37 58 if($coralize != "" && $coralize != false) { … … 43 64 } 44 65 $OUT = "<!-- HighSlide4Wordpress Footer JS Includes -->\n"; 66 $OUT .= '<a href="http://solariz.de" title="Highslide for Wordpress" style="display:none">highslide wordpress</a>'."\n"; 45 67 $OUT .= '<script type="text/javascript" src="'.$hs_script_uri.'"></script>'; 46 68 $OUT .= '<script type="text/javascript">'."\n"; … … 137 159 $OUT .= get_option('hs4wp_advanced'); 138 160 // Add the controlbar 139 if($hs4wp_img_count > 1 ) {161 if($hs4wp_img_count > 1 && get_option('hs4wp_disable_slideshow') == false) { 140 162 $OUT .= "if (hs.addSlideshow) hs.addSlideshow({\n"; 141 163 $interval = intval(get_option('hs4wp_slideshow_delay')*1000); … … 152 174 $OUT .= "});\n"; 153 175 } 176 $hszIndex = get_option('hs4wp_custom_zindex'); 177 if( $hszIndex != false ) { 178 $OUT .= "hs.zIndexCounter = ".$hszIndex.";\n"; 179 } 180 // Custom language / translation option 181 if( get_option('hs4wp_use_lang')=='on' ) { 182 $slideshow_delay = get_option('hs4wp_langtext'); 183 $OUT .= "hs.lang = {"; 184 if($slideshow_delay[0]) $OUT .= "loadingText : '".$slideshow_delay[0]."',\n"; 185 if($slideshow_delay[1]) $OUT .= "loadingTitle : '".$slideshow_delay[1]."',\n"; 186 if($slideshow_delay[2]) $OUT .= "focusTitle : '".$slideshow_delay[2]."',\n"; 187 if($slideshow_delay[3]) $OUT .= "restoreTitle : '".$slideshow_delay[3]."',\n"; 188 if($slideshow_delay[4]) $OUT .= "fullExpandTitle : '".$slideshow_delay[4]."',\n"; 189 if($slideshow_delay[5]) $OUT .= "previousText : '".$slideshow_delay[5]."',\n"; 190 if($slideshow_delay[6]) $OUT .= "nextText : '".$slideshow_delay[6]."',\n"; 191 if($slideshow_delay[7]) $OUT .= "closeText : '".$slideshow_delay[7]."',\n"; 192 if($slideshow_delay[8]) $OUT .= "moveText : '".$slideshow_delay[8]."',\n"; 193 if($slideshow_delay[8]) $OUT .= "moveTitle : '".$slideshow_delay[8]."',\n"; 194 if($slideshow_delay[9]) $OUT .= "closeTitle : '".$slideshow_delay[9]."',\n"; 195 if($slideshow_delay[10]) $OUT .= "resizeTitle : '".$slideshow_delay[10]."',\n"; 196 if($slideshow_delay[11]) $OUT .= "playText : '".$slideshow_delay[11]."',\n"; 197 if($slideshow_delay[12]) $OUT .= "playTitle : '".$slideshow_delay[12]."',\n"; 198 if($slideshow_delay[13]) $OUT .= "pauseText : '".$slideshow_delay[13]."',\n"; 199 if($slideshow_delay[14]) $OUT .= "pauseTitle : '".$slideshow_delay[14]."',\n"; 200 if($slideshow_delay[15]) $OUT .= "previousTitle : '".$slideshow_delay[15]."',\n"; 201 if($slideshow_delay[16]) $OUT .= "nextTitle : '".$slideshow_delay[16]."',\n"; 202 $OUT .= "}"; 203 } 154 204 $OUT .= "</script>\n"; 155 205 echo $OUT; … … 337 387 } 338 388 389 339 390 /** 340 391 * function hs4wp_auto_set_attachmentURL 341 392 * Function containing STRING to add on found href img 342 * @version 1.0 1393 * @version 1.02 343 394 * @param string $url 344 395 * @author Marco 'solariz' Goetze … … 346 397 */ 347 398 function hs4wp_auto_set_attachmentURL($url) { 399 GLOBAL $attachment_id,$hs4wp_attachment_workaround; 400 if($attachment_id < 1 || wp_attachment_is_image($attachment_id) != true) return $url; 348 401 // chek if URL already contain highslide parts 349 402 if(stripos($url,"highslide") == false && stripos($url,"onclick") == false && is_attachment() == true) { 350 $url = $url."\" class=\"highslide\" onclick=\"return hs.expand(this)"; 403 if($hs4wp_attachment_workaround == 1) { 404 $url = wp_get_attachment_url($attachment_id); 405 $url = $url."\" class=\"highslide\" onclick=\"return hs.expand(this)"; 406 } 407 ++$hs4wp_attachment_workaround; 351 408 } 352 409 return $url; … … 377 434 { 378 435 GLOBAL $hs4wp_plugin_uri; 379 $hs4wpOptionsCSS = $hs4wp_plugin_uri." /options.css";436 $hs4wpOptionsCSS = $hs4wp_plugin_uri."options.full.css"; 380 437 if (is_ssl()) $hs4wpOptionsCSS = preg_replace( '/^http:\/\//', 'https://', $hs4wpOptionsCSS ); 381 438 wp_register_style('hs4wpOptionsCSS', $hs4wpOptionsCSS); … … 394 451 395 452 function hs4wp_act(){ 396 if(get_option('hs4wp_lic_agreement')!='on' && isset($_POST['submitted']) != true) { 397 echo " 398 <div id='hs4wp-warning' class='updated fade'><p><strong>".__('Highslide 4 Wordpress *reloaded* is almost ready.')."</strong> ".sprintf(__('You must accept the License Agreement and <a href="%1$s">configure</a> it to work.'), "./options-general.php?page=highslide-4-wordpress-reloaded/functions.hs4wp.php")."</p></div> 399 "; 453 if( is_admin() ) { 454 if(get_option('hs4wp_lic_agreement')!='on' && isset($_POST['submitted']) != true) { 455 echo " 456 <div id='hs4wp-warning' class='updated fade'><p><strong>".__('Highslide 4 Wordpress *reloaded* is almost ready.')."</strong> ".sprintf(__('You must accept the License Agreement and <a href="%1$s">configure</a> it to work.'), "./options-general.php?page=highslide-4-wordpress-reloaded/functions.hs4wp.php")."</p></div> 457 "; 458 } 400 459 } 401 460 return; -
highslide-4-wordpress-reloaded/trunk/highslide-4-wordpress-reloaded.php
r333240 r341237 4 4 Plugin URI: http://solariz.de/highslide4wordpress/ 5 5 Description: Add configurable "Highslide JS" Support to your Wordpress Installation, including Auto Image linking. 6 Version: 1.1 66 Version: 1.18 7 7 Author: Marco Goetze 8 8 Author URI: http://solariz.de/ … … 20 20 // Versions 21 21 $hs4wp_ver_hs = 419; 22 $hs4wp_ver_plugin = 11 7;22 $hs4wp_ver_plugin = 118; 23 23 24 24 // addon check … … 27 27 exit; 28 28 } 29 30 // PHP Version check 31 if( floatval(phpversion()) < 5 ) { 32 // PHP < 5 33 if( is_admin() ) echo "<div id='hs4wp-warning' class='updated fade'><p><strong>".__('PHP Version seems outdated.')."</strong> ".'The Plugin "Highslide for Wordpress" need at least PHP 5.0 to work.'."</p></div>"; 34 return false; 35 } 29 36 30 37 // fixed set / requires … … 38 45 if(get_option('hs4wp_lic_agreement') == "on") { 39 46 add_filter('the_content', 'hs4wp_auto_set',60); 40 if(get_option('hs4wp_attachment_filter')!="on") add_filter('wp_get_attachment_url', 'hs4wp_auto_set_attachmentURL',61); 47 if(get_option('hs4wp_attachment_filter')!="on") add_filter('attachment_link', 'hs4wp_auto_set_attachmentURL',61); 48 41 49 add_action('wp_head', 'hs4wp_prepare_header'); 42 50 add_action('wp_footer', 'hs4wp_add_to_footer'); -
highslide-4-wordpress-reloaded/trunk/options.hs4wp.php
r333240 r341237 22 22 $ptag_workaround =(!isset($_POST['ptag_workaround'])? '': $_POST['ptag_workaround']); 23 23 $media_icon =(!isset($_POST['media_icon'])? '': $_POST['media_icon']); 24 $handle_swf =(!isset($_POST['handle_swf'])? '': $_POST['handle_swf']); 25 24 $useFullJS =(!isset($_POST['useFullJS'])? '': $_POST['useFullJS']); 25 $handle_swf =(!isset($_POST['handle_swf'])? '': $_POST['handle_swf']); 26 $disable_slideshow =(!isset($_POST['disable_slideshow'])? '': $_POST['disable_slideshow']); 27 $use_lang =(!isset($_POST['use_lang'])? '': $_POST['use_lang']); 26 28 $input1 =(!isset($_POST['input1'])? 5: intval($_POST['input1'])); 27 29 $input2 =(!isset($_POST['input2'])? '': $_POST['input2']); … … 31 33 $select4 =(!isset($_POST['select4'])? '': intval($_POST['select4'])); 32 34 $textarea1 =(!isset($_POST['textarea1'])? '': stripslashes($_POST['textarea1'])); 35 $zinput =(!isset($_POST['zinput'])? '': intval($_POST['zinput'])); 36 37 // Language Inputs 38 $inputL0 =(!isset($_POST['inputL0'])? false: stripslashes($_POST['inputL0'])); 39 $inputL1 =(!isset($_POST['inputL1'])? false: stripslashes($_POST['inputL1'])); 40 $inputL2 =(!isset($_POST['inputL2'])? false: stripslashes($_POST['inputL2'])); 41 $inputL3 =(!isset($_POST['inputL3'])? false: stripslashes($_POST['inputL3'])); 42 $inputL4 =(!isset($_POST['inputL4'])? false: stripslashes($_POST['inputL4'])); 43 $inputL5 =(!isset($_POST['inputL5'])? false: stripslashes($_POST['inputL5'])); 44 $inputL6 =(!isset($_POST['inputL6'])? false: stripslashes($_POST['inputL6'])); 45 $inputL7 =(!isset($_POST['inputL7'])? false: stripslashes($_POST['inputL7'])); 46 $inputL8 =(!isset($_POST['inputL8'])? false: stripslashes($_POST['inputL8'])); 47 $inputL9 =(!isset($_POST['inputL9'])? false: stripslashes($_POST['inputL9'])); 48 $inputL10 =(!isset($_POST['inputL10'])? false: stripslashes($_POST['inputL10'])); 49 $inputL11 =(!isset($_POST['inputL11'])? false: stripslashes($_POST['inputL11'])); 50 $inputL12 =(!isset($_POST['inputL12'])? false: stripslashes($_POST['inputL12'])); 51 $inputL13 =(!isset($_POST['inputL13'])? false: stripslashes($_POST['inputL13'])); 52 $inputL14 =(!isset($_POST['inputL14'])? false: stripslashes($_POST['inputL14'])); 53 $inputL15 =(!isset($_POST['inputL15'])? false: stripslashes($_POST['inputL15'])); 54 $inputL16 =(!isset($_POST['inputL16'])? false: stripslashes($_POST['inputL16'])); 55 56 33 57 // Check boxes 34 58 update_option('hs4wp_lic_agreement', $lic_agreement); … … 41 65 update_option('hs4wp_ext_icon', $ext_icon); 42 66 update_option('hs4wp_ptag_workaround', $ptag_workaround); 43 update_option('hs4wp_media_icon', $media_icon); 67 update_option('hs4wp_media_icon', $media_icon); 44 68 update_option('hs4wp_handle_swf', $handle_swf); 45 46 69 update_option('hs4wp_disable_slideshow', $disable_slideshow); 70 update_option('hs4wp_useFullJS', $useFullJS); 71 update_option('hs4wp_use_lang', $use_lang); 72 47 73 // Input 48 74 update_option('hs4wp_slideshow_delay', $input1); 49 75 update_option('hs4wp_custom_css', $input2); 76 update_option('hs4wp_custom_zindex', $zinput); 77 78 79 80 // Language 81 update_option('hs4wp_langtext', array( 82 0=>$inputL0, 83 1=>$inputL1, 84 2=>$inputL2, 85 3=>$inputL3, 86 4=>$inputL4, 87 5=>$inputL5, 88 6=>$inputL6, 89 7=>$inputL7, 90 8=>$inputL8, 91 9=>$inputL9, 92 10=>$inputL10, 93 11=>$inputL11, 94 12=>$inputL12, 95 13=>$inputL13, 96 14=>$inputL14, 97 15=>$inputL15, 98 16=>$inputL16 99 )); 50 100 51 101 // Selects … … 73 123 $media_icon =( get_option('hs4wp_media_icon')=='on' ) ? "checked":""; 74 124 $handle_swf =( get_option('hs4wp_handle_swf')=='on' ) ? "checked":""; 75 125 $disable_slideshow =( get_option('hs4wp_disable_slideshow')=='on' ) ? "checked":""; 126 $useFullJS =( get_option('hs4wp_useFullJS')=='on' ) ? "checked":""; 127 $use_lang =( get_option('hs4wp_use_lang')=='on' ) ? "checked":""; 128 76 129 $slideshow_delay = get_option('hs4wp_slideshow_delay'); 77 130 $custom_css = get_option('hs4wp_custom_css'); 78 131 $textarea1 = get_option('hs4wp_advanced'); 132 $hszIndex = get_option('hs4wp_custom_zindex'); 133 134 $hs4wp_langtext = get_option('hs4wp_langtext'); 135 136 79 137 // Defaults 80 138 if(!$slideshow_delay) $slideshow_delay = 5; … … 160 218 <p><b>What is a commercial website?</b><br/>A commercial website is a website which purpose is generating revenue or cash flow of any type, and that isn't under a non-profit organization. So if you're selling a product, selling advertisement, selling a service or just marketing a commercial business, your site is commercial. A company website is also commercial even if it doesn't sell anything, as it's purpose is to front a commercial company.</p> 161 219 <br/> 220 <p><b>I`m commercial in someway, and now?</b><br/>This plugin consists of two parts, 1) the Javascript by Torstein Honsi and on 2) the Wordpress part by me. Highslide itself needs a commercial license to use it for commecial projects, you can obtain it <a href="http://www.highslide.com">here</a>. The commercial use of the Wordpress plugin itself is donationware, so if you use it please use the "How to Donate Link" in the right bar to send me a donation. How much, choose what the plugin is worth to you but please send at least $1 to cover my hosting costs of my blog / webpage. Thanks.</p> 221 <br/> 162 222 <div> 163 223 <input id="check0" type="checkbox" name="lic_agreement" $lic_agreement /> … … 201 261 <label for="check7">Handle SWF files auto. as Object in HTML Expander ?</label> 202 262 </div> 263 <div> 264 <input id="check8" type="checkbox" name="disable_slideshow" $disable_slideshow /> 265 <label for="check8">Disable Slideshow functionality.</label> 266 </div> 203 267 <br/> 204 268 <!-- left aligned input --> … … 227 291 </ul> 228 292 <div class="submit"><input type="submit" name="Submit" value="Save options" /></div> 293 <h3>Texts / Language / Translation<span>[<a href="http://solariz.de/highslide-wordpress-reloaded#language" target="hs4wpHelp">help</a>]</span></h3> 294 <ul> 295 <div> 296 <input id="Lcheck1" type="checkbox" name="use_lang" $use_lang /> 297 <label for="Lcheck1">Use text below instead of default ?</label> 298 </div> 299 <input type="text" size="60" name="inputL0" value="$hs4wp_langtext[0]" /><i>(<label for="inputL0">Loading...</label>)</i></br> 300 <input type="text" size="60" name="inputL1" value="$hs4wp_langtext[1]" /><i>(<label for="inputL1">Click to cancel</label>)</i></br> 301 <input type="text" size="60" name="inputL2" value="$hs4wp_langtext[2]" /><i>(<label for="inputL2">Click to bring to front</label>)</i></br> 302 <input type="text" size="60" name="inputL3" value="$hs4wp_langtext[3]" title="Click to close image, click and drag to move. Use arrow keys for next and previous." /><i>(<label for="inputL3" title="Click to close image, click and drag to move. Use arrow keys for next and previous.">Click to close image, click...</label>)</i></br> 303 <input type="text" size="60" name="inputL4" value="$hs4wp_langtext[4]" /><i>(<label for="inputL4">Expand to actual size (f)</label>)</i></br> 304 <input type="text" size="60" name="inputL5" value="$hs4wp_langtext[5]" /><i>(<label for="inputL5">Previous</label>)</i></br> 305 <input type="text" size="60" name="inputL6" value="$hs4wp_langtext[6]" /><i>(<label for="inputL6">Next</label>)</i></br> 306 <input type="text" size="60" name="inputL7" value="$hs4wp_langtext[7]" /><i>(<label for="inputL7">Close</label>)</i></br> 307 <input type="text" size="60" name="inputL8" value="$hs4wp_langtext[8]" /><i>(<label for="inputL8">Move</label>)</i></br> 308 <input type="text" size="60" name="inputL9" value="$hs4wp_langtext[9]" /><i>(<label for="inputL9">Close (esc)</label>)</i></br> 309 <input type="text" size="60" name="inputL10" value="$hs4wp_langtext[10]" /><i>(<label for="inputL10">Resize</label>)</i></br> 310 <input type="text" size="60" name="inputL11" value="$hs4wp_langtext[11]" /><i>(<label for="inputL11">Play</label>)</i></br> 311 <input type="text" size="60" name="inputL12" value="$hs4wp_langtext[12]" /><i>(<label for="inputL12">Play slideshow (spacebar)</label>)</i></br> 312 <input type="text" size="60" name="inputL13" value="$hs4wp_langtext[13]" /><i>(<label for="inputL13">Pause</label>)</i></br> 313 <input type="text" size="60" name="inputL14" value="$hs4wp_langtext[14]" /><i>(<label for="inputL14">Pause slideshow (spacebar)</label>)</i></br> 314 <input type="text" size="60" name="inputL15" value="$hs4wp_langtext[15]" /><i>(<label for="inputL15">Previous (arrow left)</label>)</i></br> 315 <input type="text" size="60" name="inputL16" value="$hs4wp_langtext[16]" /><i>(<label for="inputL16">Next (arrow right)</label>)</i></br> 316 </ul> 317 <div class="submit"><input type="submit" name="Submit" value="Save options" /></div> 318 229 319 <h3>Advanced Options<span>[<a href="http://solariz.de/highslide-wordpress-reloaded#advanced" target="hs4wpHelp">help</a>]</span></h3> 230 320 <ul> … … 246 336 <small>Since 1.14 this Plugin insert a small Media Icon into the WP-WYSIWYG Editor, by checking this you can disable this icon.</small></label> 247 337 </div> 338 <br/> 339 <div> 340 <input id="Acheck4" type="checkbox" name="useFullJS" $useFullJS /> 341 <label for="Acheck4">Use uncompressed JS & CSS instead of the minified version<br/> 342 <small>Should be applied only if some JS / CSS problems occur.</small></label> 343 </div> 344 <br/> 345 <div> 346 <input id="zinput" type="text" size="4" name="zinput" value="$hszIndex" /> 347 <label for="zinput"> Z-Index of highslide window.<br/> 348 <small>If neccesary raise this value to make Highslide appear on top. Empty for default (1001).</small></label> 349 </div> 248 350 <hr> 249 351 <div> -
highslide-4-wordpress-reloaded/trunk/readme.txt
r333240 r341237 4 4 Tags: images, highslide, lightbox, popup, image, slideshow, zoom 5 5 Requires at least: 2.0.2 6 Tested up to: 3. 0.46 Tested up to: 3.1 7 7 Stable tag: 1.17 8 8 … … 70 70 71 71 == Changelog == 72 = 1.18 = 73 * Included new minified JS and CSS files 74 * Option in Advanced Options to toggle between minified and full JS/CSS version 75 * Included more Highslide JS lib codes for centering and slideshow 76 * New config option to configure the text output of the plugin, now you can translate the plugins output as you prefer 77 * removed CSS Border on hover 78 * added requirement check of PHP5.x 79 * changed plugin activation message to appear in admin only 80 * update to the lic. agreement text 81 * Workaround for attachment images not working, reported by heliblog 12/10 82 * added advanced config to manually change the z-index of hs window 83 * added option to disable slideshow bar 84 72 85 = 1.17 = 73 86 * Added admin warning msg if lic. agreement was not accepted
Note: See TracChangeset
for help on using the changeset viewer.