upgrade to yui 2.5.1
This commit is contained in:
parent
e00050ad1c
commit
ff7d72becc
1632 changed files with 812103 additions and 0 deletions
16
www/extras/yui/examples/editor/assets/exampleslib.inc
Normal file
16
www/extras/yui/examples/editor/assets/exampleslib.inc
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
function getRawEditorData($paramName) {
|
||||
if ($paramName) {
|
||||
if (isset($_POST[$paramName])) {
|
||||
return $_POST[$paramName];
|
||||
} else if (isset($_GET[$paramName])) {
|
||||
return $_GET[$paramName];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue