diff options
| -rw-r--r-- | actions/plugins/settings/save.php | 2 | ||||
| -rw-r--r-- | actions/plugins/usersettings/save.php | 2 | ||||
| -rw-r--r-- | mod/thewire/views/default/js/thewire.php | 16 | ||||
| -rw-r--r-- | mod/thewire/views/default/thewire/css.php | 3 | ||||
| -rw-r--r-- | views/default/input/longtext.php | 2 | ||||
| -rw-r--r-- | views/default/input/plaintext.php | 2 | ||||
| -rw-r--r-- | views/default/input/text.php | 1 | ||||
| -rw-r--r-- | views/default/js/languages.php | 8 | 
8 files changed, 24 insertions, 12 deletions
| diff --git a/actions/plugins/settings/save.php b/actions/plugins/settings/save.php index e94127f7c..581a2f9ec 100644 --- a/actions/plugins/settings/save.php +++ b/actions/plugins/settings/save.php @@ -3,7 +3,7 @@   * Saves global plugin settings.   *   * This action can be overriden for a specific plugin by creating the - * settings/<plugin_id>/save action in that plugin. + * <plugin_id>/settings/save action in that plugin.   *   * @uses array $_REQUEST['params']    A set of key/value pairs to save to the ElggPlugin entity   * @uses int   $_REQUEST['plugin_id'] The ID of the plugin diff --git a/actions/plugins/usersettings/save.php b/actions/plugins/usersettings/save.php index 71ad2ad7b..f6b8ab0b6 100644 --- a/actions/plugins/usersettings/save.php +++ b/actions/plugins/usersettings/save.php @@ -3,7 +3,7 @@   * Saves user-specific plugin settings.   *   * This action can be overriden for a specific plugin by creating the - * settings/<plugin_id>/save action in that plugin. + * <plugin_id>/usersettings/save action in that plugin.   *   * @uses array $_REQUEST['params']    A set of key/value pairs to save to the ElggPlugin entity   * @uses int   $_REQUEST['plugin_id'] The id of the plugin diff --git a/mod/thewire/views/default/js/thewire.php b/mod/thewire/views/default/js/thewire.php index 0a6eba134..ba8f35050 100644 --- a/mod/thewire/views/default/js/thewire.php +++ b/mod/thewire/views/default/js/thewire.php @@ -34,11 +34,11 @@ elgg.thewire.textCounter = function(textarea, status, limit) {  	status.html(remaining_chars);  	if (remaining_chars < 0) { -		status.parent().css("color", "#D40D12"); +		status.parent().addClass("thewire-characters-remaining-warning");  		$("#thewire-submit-button").attr('disabled', 'disabled');  		$("#thewire-submit-button").addClass('elgg-state-disabled');  	} else { -		status.parent().css("color", ""); +		status.parent().removeClass("thewire-characters-remaining-warning");  		$("#thewire-submit-button").removeAttr('disabled', 'disabled');  		$("#thewire-submit-button").removeClass('elgg-state-disabled');  	} @@ -57,16 +57,16 @@ elgg.thewire.viewPrevious = function(event) {  	var postGuid = $link.attr("href").split("/").pop();  	var $previousDiv = $("#thewire-previous-" + postGuid); -	if ($link.html() == "<?php echo elgg_echo('thewire:hide'); ?>") { -		$link.html("<?php echo elgg_echo('thewire:previous'); ?>"); -		$link.attr("title", "<?php echo elgg_echo('thewire:previous:help'); ?>"); +	if ($link.html() == elgg.echo('thewire:hide')) { +		$link.html(elgg.echo('thewire:previous')); +		$link.attr("title", elgg.echo('thewire:previous:help'));  		$previousDiv.slideUp(400);  	} else { -		$link.html("<?php echo elgg_echo('thewire:hide'); ?>"); -		$link.attr("title", "<?php echo elgg_echo('thewire:hide:help'); ?>"); +		$link.html(elgg.echo('thewire:hide')); +		$link.attr("title", elgg.echo('thewire:hide:help'));  		$.ajax({type: "GET", -			url: "<?php echo $site_url . "ajax/view/thewire/previous"; ?>", +			url: elgg.config.wwwroot + "ajax/view/thewire/previous",  			dataType: "html",  			cache: false,  			data: {guid: postGuid}, diff --git a/mod/thewire/views/default/thewire/css.php b/mod/thewire/views/default/thewire/css.php index d1ef31993..d11cce74a 100644 --- a/mod/thewire/views/default/thewire/css.php +++ b/mod/thewire/views/default/thewire/css.php @@ -27,6 +27,9 @@ The Wire  	text-align: right;  	background: white;  } +.thewire-characters-remaining-warning { +	color: #D40D12 !important; +}  .thewire-parent {  	margin-left: 40px;  } diff --git a/views/default/input/longtext.php b/views/default/input/longtext.php index 2b1462635..61dc7ca19 100644 --- a/views/default/input/longtext.php +++ b/views/default/input/longtext.php @@ -19,6 +19,8 @@ if (isset($vars['class'])) {  $defaults = array(  	'value' => '', +	'rows' => '10', +	'cols' => '50',  	'id' => 'elgg-input-' . rand(), //@todo make this more robust  ); diff --git a/views/default/input/plaintext.php b/views/default/input/plaintext.php index cd0aaafcf..e92c61ced 100644 --- a/views/default/input/plaintext.php +++ b/views/default/input/plaintext.php @@ -20,6 +20,8 @@ if (isset($vars['class'])) {  $defaults = array(  	'value' => '', +	'rows' => '10', +	'cols' => '50',  	'disabled' => false,  ); diff --git a/views/default/input/text.php b/views/default/input/text.php index 707a50179..07ce5c710 100644 --- a/views/default/input/text.php +++ b/views/default/input/text.php @@ -23,5 +23,4 @@ $defaults = array(  $vars = array_merge($defaults, $vars);  ?> -  <input type="text" <?php echo elgg_format_attributes($vars); ?> />
\ No newline at end of file diff --git a/views/default/js/languages.php b/views/default/js/languages.php index 009e8159c..c51d7bcb2 100644 --- a/views/default/js/languages.php +++ b/views/default/js/languages.php @@ -6,4 +6,10 @@ global $CONFIG;  $language = $vars['language']; -echo json_encode($CONFIG->translations[$language]);
\ No newline at end of file +$translations = $CONFIG->translations['en']; + +if ($language != 'en') { +	$translations = array_merge($translations, $CONFIG->translations[$language]); +} + +echo json_encode($translations);
\ No newline at end of file | 
